mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-26 20:00:16 +08:00
Fix unquoted primary key columns in copy table dialog
This commit is contained in:
@ -242,7 +242,7 @@ begin
|
||||
begin
|
||||
if i > 0 then
|
||||
keystr := keystr + ', ';
|
||||
keystr := keystr + keylist[k].Columns[i];
|
||||
keystr := keystr + mainform.mask(keylist[k].Columns[i]);
|
||||
if keylist[k].SubParts[i] <> '' then
|
||||
keystr := keystr + '(' + keylist[k].SubParts[i] + ')';
|
||||
end;
|
||||
|
Reference in New Issue
Block a user