mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-26 11:17:57 +08:00
Do not export data from MRG_MYISAM tables. See http://www.heidisql.com/forum.php?t=9842
This commit is contained in:
@ -1294,6 +1294,8 @@ begin
|
||||
// Table data
|
||||
if comboExportData.Text = DATA_NO then begin
|
||||
Output(CRLF+'-- Data exporting was unselected.'+CRLF, False, True, True, False, False);
|
||||
end else if DBObj.Engine = 'MRG_MYISAM' then begin
|
||||
Output(CRLF+'-- Table data not exported because this is '+DBObj.Engine+' table which holds its data in separate tables.'+CRLF, False, True, True, False, False);
|
||||
end else begin
|
||||
tmp := FormatNumber(DBObj.Rows)+' rows';
|
||||
if LowerCase(DBObj.Engine) = 'innodb' then
|
||||
|
Reference in New Issue
Block a user