mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-14 18:12:05 +08:00
Fix multi column filter concatenated without OR after linebreak. See http://www.heidisql.com/forum.php?t=21005 and http://www.heidisql.com/forum.php?t=21007
This commit is contained in:
@ -8238,7 +8238,7 @@ begin
|
|||||||
|
|
||||||
Line := '';
|
Line := '';
|
||||||
for i:=0 to Conditions.Count-1 do begin
|
for i:=0 to Conditions.Count-1 do begin
|
||||||
if Length(Line) > 0 then
|
if i > 0 then
|
||||||
Line := Line + ' OR ';
|
Line := Line + ' OR ';
|
||||||
Line := Line + Conditions[i];
|
Line := Line + Conditions[i];
|
||||||
// Add linebreak near right window edge
|
// Add linebreak near right window edge
|
||||||
|
Reference in New Issue
Block a user