File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -8332,9 +8332,10 @@ main(int argc, char **argv)
8332
8332
*
8333
8333
* CREATE SCHEMA testlibpq3;
8334
8334
* SET search_path = testlibpq3;
8335
+ * SET standard_conforming_strings = ON;
8335
8336
* CREATE TABLE test1 (i int4, t text, b bytea);
8336
- * INSERT INTO test1 values (1, 'joe''s place', '\\ 000\\ 001\\ 002\\ 003\ \004');
8337
- * INSERT INTO test1 values (2, 'ho there', '\\ 004\\ 003\\ 002\\ 001\ \000');
8337
+ * INSERT INTO test1 values (1, 'joe''s place', '\000\001\002\003\004');
8338
+ * INSERT INTO test1 values (2, 'ho there', '\004\003\002\001\000');
8338
8339
*
8339
8340
* The expected output is:
8340
8341
*
Original file line number Diff line number Diff line change 10
10
*
11
11
* CREATE SCHEMA testlibpq3;
12
12
* SET search_path = testlibpq3;
13
+ * SET standard_conforming_strings = ON;
13
14
* CREATE TABLE test1 (i int4, t text, b bytea);
14
15
* INSERT INTO test1 values (1, 'joe''s place', '\000\001\002\003\004');
15
16
* INSERT INTO test1 values (2, 'ho there', '\004\003\002\001\000');
You can’t perform that action at this time.
0 commit comments