mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2026-03-13 09:24:25 +08:00
Only pass ROW_FORMAT clause into CREATE TABLE query if explicitly set.
This commit is contained in:
@@ -638,7 +638,7 @@ begin
|
||||
else
|
||||
Result := Result + 'ENGINE='+comboEngine.Text + CRLF;
|
||||
end;
|
||||
if comboRowFormat.Text <> '' then
|
||||
if comboRowFormat.Tag = ModifiedFlag then
|
||||
Result := Result + 'ROW_FORMAT='+comboRowFormat.Text + CRLF;
|
||||
if chkChecksum.Checked then
|
||||
Result := Result + 'CHECKSUM='+IntToStr(Integer(chkChecksum.Checked)) + CRLF;
|
||||
|
||||
Reference in New Issue
Block a user