File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ WHERE opc.oid >= 16384 AND NOT amvalidate(opc.oid);
7
7
--------+---------
8
8
(0 rows)
9
9
10
+ --backslash is used in tests below, installcheck will fail if
11
+ --standard_conforming_string is off
12
+ set standard_conforming_strings=on;
10
13
select show_trgm('');
11
14
show_trgm
12
15
-----------
Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ SELECT amname, opcname
5
5
FROM pg_opclass opc LEFT JOIN pg_am am ON am .oid = opcmethod
6
6
WHERE opc .oid >= 16384 AND NOT amvalidate(opc .oid );
7
7
8
+ -- backslash is used in tests below, installcheck will fail if
9
+ -- standard_conforming_string is off
10
+ set standard_conforming_strings= on ;
11
+
8
12
select show_trgm(' ' );
9
13
select show_trgm(' (*&^$@%@' );
10
14
select show_trgm(' a b c' );
You can’t perform that action at this time.
0 commit comments