From 5d4a33198cb30842a089fd85a4149cacdf321a46 Mon Sep 17 00:00:00 2001 From: Ansgar Becker Date: Thu, 2 Feb 2012 20:05:53 +0000 Subject: [PATCH] Do not export data from MRG_MYISAM tables. See http://www.heidisql.com/forum.php?t=9842 --- source/tabletools.pas | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/tabletools.pas b/source/tabletools.pas index 6cef604a..ca556a0b 100644 --- a/source/tabletools.pas +++ b/source/tabletools.pas @@ -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