mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-06 18:24:26 +08:00
Do not double-unformat numbers in automatic grid WHERE clause. Fixes issue #2608.
This commit is contained in:
@ -4336,7 +4336,7 @@ begin
|
||||
if DataType(j).Index = dtBit then
|
||||
Result := Result + '=b' + Connection.EscapeString(ColVal)
|
||||
else
|
||||
Result := Result + '=' + UnformatNumber(ColVal);
|
||||
Result := Result + '=' + ColVal;
|
||||
end;
|
||||
dtcBinary:
|
||||
Result := Result + '=' + HexValue(ColVal);
|
||||
|
Reference in New Issue
Block a user