mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-26 20:50:20 +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:
@ -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);
|
||||
|
Reference in New Issue
Block a user