Remove handling of crashed tables - there is no difference to normal tables in the way we handle them.

This commit is contained in:
Ansgar Becker
2009-12-19 21:25:59 +00:00
parent 62764fa5e3
commit 7272ba3bc3
6 changed files with 16 additions and 25 deletions

View File

@@ -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