mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2026-03-13 09:24:25 +08:00
Remove handling of crashed tables - there is no difference to normal tables in the way we handle them.
This commit is contained in:
@@ -87,7 +87,7 @@ begin
|
||||
DBObjects := Mainform.Connection.GetDBObjects(Mainform.ActiveDatabase);
|
||||
comboTable.Items.Clear;
|
||||
for i:=0 to DBObjects.Count-1 do begin
|
||||
if DBObjects[i].NodeType in [lntTable, lntCrashedTable] then
|
||||
if DBObjects[i].NodeType in [lntTable] then
|
||||
comboTable.Items.Add(DBObjects[i].Name);
|
||||
end;
|
||||
if comboTable.Items.Count > 0 then
|
||||
|
||||
Reference in New Issue
Block a user