@@ -22,19 +22,19 @@ select * from nonesuch;
2222ERROR: parser: parse error at or near "select"
2323-- bad name in target list
2424select nonesuch from pg_database;
25- ERROR:attribute 'nonesuch' not found
25+ ERROR:Attribute 'nonesuch' not found
2626-- bad attribute name on lhs of operator
2727select * from pg_database where nonesuch = pg_database.datname;
28- ERROR:attribute 'nonesuch' not found
28+ ERROR:Attribute 'nonesuch' not found
2929-- bad attribute name on rhs of operator
3030select * from pg_database where pg_database.datname = nonesuch;
31- ERROR:attribute 'nonesuch' not found
31+ ERROR:Attribute 'nonesuch' not found
3232-- bad select distinct on syntax, distinct attribute missing
3333select distinct on (foobar) from pg_database;
3434ERROR: parser: parse error at or near "from"
3535-- bad select distinct on syntax, distinct attribute not in target list
3636select distinct on (foobar) * from pg_database;
37- ERROR:attribute 'foobar' not found
37+ ERROR:Attribute 'foobar' not found
3838--
3939-- DELETE
4040