diff options
author | Tom Lane | 2006-05-11 19:15:36 +0000 |
---|---|---|
committer | Tom Lane | 2006-05-11 19:15:36 +0000 |
commit | 637028afe17b9616d279d13d9fc5d6df1ecf369b (patch) | |
tree | 1e95735e0563109cd859edf95e268a5287a97aae /src/test | |
parent | 3fdeb189e977ebe29ee658592d07930e016dd031 (diff) |
Code review for standard_conforming_strings patch. Fix it so it does not
throw warnings for 100%-SQL-standard constructs, clean up some minor
infelicities, try to un-break ecpg to the best of my ability. (It's not clear
how ecpg is going to find out the setting of standard_conforming_strings,
though.) I think pg_dump still needs work, too.
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/regress/expected/strings.out | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/test/regress/expected/strings.out b/src/test/regress/expected/strings.out index 0c9b88ee8f0..20081f699b6 100644 --- a/src/test/regress/expected/strings.out +++ b/src/test/regress/expected/strings.out @@ -927,30 +927,6 @@ show standard_conforming_strings; (1 row) select 'a\bcd' as f1, 'a\b''cd' as f2, 'a\b''''cd' as f3, 'abcd\' as f4, 'ab\''cd' as f5, '\\' as f6; -WARNING: nonstandard use of escape in a string literal -LINE 1: select 'a\bcd' as f1, 'a\b''cd' as f2, 'a\b''''cd' as f3, 'a... - ^ -HINT: Use the escape string syntax for escapes, e.g., E'\r\n'. -WARNING: nonstandard use of escape in a string literal -LINE 1: select 'a\bcd' as f1, 'a\b''cd' as f2, 'a\b''''cd' as f3, 'a... - ^ -HINT: Use the escape string syntax for escapes, e.g., E'\r\n'. -WARNING: nonstandard use of escape in a string literal -LINE 1: select 'a\bcd' as f1, 'a\b''cd' as f2, 'a\b''''cd' as f3, 'a... - ^ -HINT: Use the escape string syntax for escapes, e.g., E'\r\n'. -WARNING: nonstandard use of escape in a string literal -LINE 1: ...a\bcd' as f1, 'a\b''cd' as f2, 'a\b''''cd' as f3, 'abcd\' ... - ^ -HINT: Use the escape string syntax for escapes, e.g., E'\r\n'. -WARNING: nonstandard use of escape in a string literal -LINE 1: ...b''cd' as f2, 'a\b''''cd' as f3, 'abcd\' as f4, 'ab\''cd' ... - ^ -HINT: Use the escape string syntax for escapes, e.g., E'\r\n'. -WARNING: nonstandard use of escape in a string literal -LINE 1: ...b''''cd' as f3, 'abcd\' as f4, 'ab\''cd' as f5, '\\' as f6... - ^ -HINT: Use the escape string syntax for escapes, e.g., E'\r\n'. f1 | f2 | f3 | f4 | f5 | f6 -------+--------+---------+-------+--------+---- a\bcd | a\b'cd | a\b''cd | abcd\ | ab\'cd | \\ |