aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas G. Lockhart <lockhart@fourpalms.org>1997-10-30 16:53:51 +0000
committerThomas G. Lockhart <lockhart@fourpalms.org>1997-10-30 16:53:51 +0000
commite037c351d4a000e9a33919fff35d7974076c2caf (patch)
treeb3ee357bdc18badd468d891fa20a5571f24aac60
parentbe74113f7626faf233c72a3458121d59d0e2a9d4 (diff)
downloadpostgresql-e037c351d4a000e9a33919fff35d7974076c2caf.tar.gz
postgresql-e037c351d4a000e9a33919fff35d7974076c2caf.zip
Update for modified quoting style in some error messages.
-rw-r--r--src/test/regress/expected/errors.out6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/regress/expected/errors.out b/src/test/regress/expected/errors.out
index 8e168e6cba6..ee26d461f7a 100644
--- a/src/test/regress/expected/errors.out
+++ b/src/test/regress/expected/errors.out
@@ -3,11 +3,11 @@ select
select * from nonesuch;
WARN:parser: parse error at or near "select"
QUERY: select nonesuch from pg_database;
-WARN:attribute "nonesuch" not found
+WARN:attribute 'nonesuch' not found
QUERY: select * from pg_database where nonesuch = pg_database.datname;
-WARN:attribute "nonesuch" not found
+WARN:attribute 'nonesuch' not found
QUERY: select * from pg_database where pg_database.datname = nonesuch;
-WARN:attribute "nonesuch" not found
+WARN:attribute 'nonesuch' not found
QUERY: select distinct on foobar from pg_database;
WARN:parser: parse error at or near "from"
QUERY: select distinct on foobar * from pg_database;