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);
77--------+---------
88(0 rows)
99
10+ --backslash is used in tests below, installcheck will fail if
11+ --standard_conforming_string is off
12+ set standard_conforming_strings=on;
1013select show_trgm('');
1114 show_trgm
1215-----------
Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ SELECT amname, opcname
55FROM pg_opclass opc LEFT JOIN pg_am am ON am .oid = opcmethod
66WHERE opc .oid >= 16384 AND NOT amvalidate(opc .oid );
77
8+ -- backslash is used in tests below, installcheck will fail if
9+ -- standard_conforming_string is off
10+ set standard_conforming_strings= on ;
11+
812select show_trgm(' ' );
913select show_trgm(' (*&^$@%@' );
1014select show_trgm(' a b c' );
You can’t perform that action at this time.
0 commit comments