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

@ -388,7 +388,7 @@ begin
2: begin
DBObjects := Mainform.Connection.GetDBObjects(Mainform.Databases[ParentNode.Index]);
// No checkbox for stored routines
if not (DBObjects[Node.Index].NodeType in [lntTable, lntCrashedTable, lntView]) then
if not (DBObjects[Node.Index].NodeType in [lntTable, lntView]) then
Node.CheckType := ctNone
end;
end;
@ -990,7 +990,7 @@ begin
end;
case DBObj.NodeType of
lntTable, lntCrashedTable: begin
lntTable: begin
// Table data
if comboExportData.Text = DATA_NO then begin
Output(CRLF+'# Data exporting was unselected.'+CRLF, False, True, True, False, False);