@@ -15,25 +15,25 @@ ERROR: All fields in the UNIQUE ON clause must appear in the target list
15
15
QUERY: delete from;
16
16
ERROR: parser: parse error at or near ";"
17
17
QUERY: delete from nonesuch;
18
- ERROR: nonesuch: Table does not exist.
18
+ ERROR: Relation ' nonesuch' does not exist
19
19
QUERY: drop table;
20
20
ERROR: parser: parse error at or near ";"
21
21
QUERY: drop table nonesuch;
22
22
ERROR: Relation 'nonesuch' does not exist
23
23
QUERY: alter table rename;
24
24
ERROR: parser: parse error at or near ";"
25
25
QUERY: alter table nonesuch rename to newnonesuch;
26
- ERROR: renamerel: relation " nonesuch" does not exist
26
+ ERROR: Relation ' nonesuch' does not exist
27
27
QUERY: alter table nonesuch rename to stud_emp;
28
- ERROR: renamerel: relation " nonesuch" does not exist
28
+ ERROR: Relation ' nonesuch' does not exist
29
29
QUERY: alter table stud_emp rename to pg_stud_emp;
30
30
ERROR: renamerel: Illegal class name: "pg_stud_emp" -- pg_ is reserved for system catalogs
31
31
QUERY: alter table stud_emp rename to aggtest;
32
32
ERROR: renamerel: relation "aggtest" exists
33
33
QUERY: alter table stud_emp rename to stud_emp;
34
34
ERROR: renamerel: relation "stud_emp" exists
35
35
QUERY: alter table nonesuchrel rename column nonesuchatt to newnonesuchatt;
36
- ERROR: renameatt: relation " nonesuchrel" nonexistent
36
+ ERROR: Relation ' nonesuchrel' does not exist
37
37
QUERY: alter table emp rename column nonesuchatt to newnonesuchatt;
38
38
ERROR: renameatt: attribute "nonesuchatt" nonexistent
39
39
QUERY: alter table emp rename column salary to manager;
0 commit comments