aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>1999-09-18 19:10:19 +0000
committerTom Lane <tgl@sss.pgh.pa.us>1999-09-18 19:10:19 +0000
commitf9f5dfbf10a30cff7255b896277d5e9836f2623b (patch)
treed1642c75540175206bac745021121101afcd377e /src
parentbd272cace63effa23d68a6b344a07e326b6a41e2 (diff)
downloadpostgresql-f9f5dfbf10a30cff7255b896277d5e9836f2623b.tar.gz
postgresql-f9f5dfbf10a30cff7255b896277d5e9836f2623b.zip
Update regress test expected outputs for small changes in
error message wording, due to most cases of no-such-relation now being detected in central heap_open code rather than on an ad-hoc basis.
Diffstat (limited to 'src')
-rw-r--r--src/test/regress/expected/errors.out8
-rw-r--r--src/test/regress/expected/temp.out2
2 files changed, 5 insertions, 5 deletions
diff --git a/src/test/regress/expected/errors.out b/src/test/regress/expected/errors.out
index d94f3e478a8..b612022873c 100644
--- a/src/test/regress/expected/errors.out
+++ b/src/test/regress/expected/errors.out
@@ -15,7 +15,7 @@ ERROR: All fields in the UNIQUE ON clause must appear in the target list
QUERY: delete from;
ERROR: parser: parse error at or near ";"
QUERY: delete from nonesuch;
-ERROR: nonesuch: Table does not exist.
+ERROR: Relation 'nonesuch' does not exist
QUERY: drop table;
ERROR: parser: parse error at or near ";"
QUERY: drop table nonesuch;
@@ -23,9 +23,9 @@ ERROR: Relation 'nonesuch' does not exist
QUERY: alter table rename;
ERROR: parser: parse error at or near ";"
QUERY: alter table nonesuch rename to newnonesuch;
-ERROR: renamerel: relation "nonesuch" does not exist
+ERROR: Relation 'nonesuch' does not exist
QUERY: alter table nonesuch rename to stud_emp;
-ERROR: renamerel: relation "nonesuch" does not exist
+ERROR: Relation 'nonesuch' does not exist
QUERY: alter table stud_emp rename to pg_stud_emp;
ERROR: renamerel: Illegal class name: "pg_stud_emp" -- pg_ is reserved for system catalogs
QUERY: alter table stud_emp rename to aggtest;
@@ -33,7 +33,7 @@ ERROR: renamerel: relation "aggtest" exists
QUERY: alter table stud_emp rename to stud_emp;
ERROR: renamerel: relation "stud_emp" exists
QUERY: alter table nonesuchrel rename column nonesuchatt to newnonesuchatt;
-ERROR: renameatt: relation "nonesuchrel" nonexistent
+ERROR: Relation 'nonesuchrel' does not exist
QUERY: alter table emp rename column nonesuchatt to newnonesuchatt;
ERROR: renameatt: attribute "nonesuchatt" nonexistent
QUERY: alter table emp rename column salary to manager;
diff --git a/src/test/regress/expected/temp.out b/src/test/regress/expected/temp.out
index bdd7f6578ba..c00450470b7 100644
--- a/src/test/regress/expected/temp.out
+++ b/src/test/regress/expected/temp.out
@@ -26,4 +26,4 @@ col
QUERY: DROP TABLE temptest;
QUERY: CREATE TEMP TABLE temptest(col int);
QUERY: SELECT * FROM temptest;
-ERROR: temptest: Table does not exist.
+ERROR: Relation 'temptest' does not exist