fix: using " and \ as values on the in filter
Properly escape the array literal built at the QueryBuilder stage.
This commit is contained in:
committed by
Steve Chavez
parent
0ba133a0bd
commit
4a594d5e95
Vendored
+4
@@ -345,6 +345,10 @@ INSERT INTO w_or_wo_comma_names VALUES ('Smith, Joseph');
|
||||
INSERT INTO w_or_wo_comma_names VALUES ('David White');
|
||||
INSERT INTO w_or_wo_comma_names VALUES ('Larry Thompson');
|
||||
INSERT INTO w_or_wo_comma_names VALUES ('Double O Seven(007)');
|
||||
INSERT INTO w_or_wo_comma_names VALUES ('"');
|
||||
INSERT INTO w_or_wo_comma_names VALUES ('Double"Quote"McGraw"');
|
||||
INSERT INTO w_or_wo_comma_names VALUES ('\');
|
||||
INSERT INTO w_or_wo_comma_names VALUES ('/\Slash/\Beast/\');
|
||||
|
||||
TRUNCATE TABLE items_with_different_col_types CASCADE;
|
||||
INSERT INTO items_with_different_col_types VALUES (1, null, null, null, null, null, null, null);
|
||||
|
||||
Reference in New Issue
Block a user