mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-26 03:01:07 +08:00
Bugfix: compare Unicode streams when scanning for updated data to post. Fixes issue #569 (hopefully).
This commit is contained in:
@ -622,7 +622,7 @@ begin
|
||||
Result := Integer(Blob1.GetString <> Blob2.GetString)
|
||||
else if FColumnTypes[ColumnIndex] = stBinaryStream then
|
||||
Result := CompareStr(Blob1.GetString, Blob2.GetString)
|
||||
else if FColumnTypes[ColumnIndex] = stAsciiStream then
|
||||
else if FColumnTypes[ColumnIndex] = stUnicodeStream then
|
||||
{$IFNDEF VER130BELOW}
|
||||
Result := WideCompareStr(Blob1.GetUnicodeString, Blob2.GetUnicodeString);
|
||||
{$ELSE}
|
||||
|
Reference in New Issue
Block a user