@@ -15,25 +15,25 @@ ERROR: All fields in the UNIQUE ON clause must appear in the target list
1515QUERY: delete from;
1616ERROR: parser: parse error at or near ";"
1717QUERY: delete from nonesuch;
18- ERROR: nonesuch: Table does not exist.
18+ ERROR:Relation ' nonesuch' does not exist
1919QUERY: drop table;
2020ERROR: parser: parse error at or near ";"
2121QUERY: drop table nonesuch;
2222ERROR: Relation 'nonesuch' does not exist
2323QUERY: alter table rename;
2424ERROR: parser: parse error at or near ";"
2525QUERY: alter table nonesuch rename to newnonesuch;
26- ERROR:renamerel: relation " nonesuch" does not exist
26+ ERROR:Relation ' nonesuch' does not exist
2727QUERY: alter table nonesuch rename to stud_emp;
28- ERROR:renamerel: relation " nonesuch" does not exist
28+ ERROR:Relation ' nonesuch' does not exist
2929QUERY: alter table stud_emp rename to pg_stud_emp;
3030ERROR: renamerel: Illegal class name: "pg_stud_emp" -- pg_ is reserved for system catalogs
3131QUERY: alter table stud_emp rename to aggtest;
3232ERROR: renamerel: relation "aggtest" exists
3333QUERY: alter table stud_emp rename to stud_emp;
3434ERROR: renamerel: relation "stud_emp" exists
3535QUERY: alter table nonesuchrel rename column nonesuchatt to newnonesuchatt;
36- ERROR:renameatt: relation " nonesuchrel" nonexistent
36+ ERROR:Relation ' nonesuchrel' does not exist
3737QUERY: alter table emp rename column nonesuchatt to newnonesuchatt;
3838ERROR: renameatt: attribute "nonesuchatt" nonexistent
3939QUERY: alter table emp rename column salary to manager;