@@ -2,7 +2,6 @@ QUERY: select 1
22select
33select * from nonesuch;
44WARN:parser: parse error at or near "select"
5-
65QUERY: select nonesuch from pg_database;
76WARN:attribute "nonesuch" not found
87QUERY: select * from pg_database where nonesuch = pg_database.datname;
@@ -11,22 +10,18 @@ QUERY: select * from pg_database where pg_database.datname = nonesuch;
1110WARN:attribute "nonesuch" not found
1211QUERY: select distinct on foobar from pg_database;
1312WARN:parser: parse error at or near "from"
14-
1513QUERY: select distinct on foobar * from pg_database;
1614WARN:The field specified in the UNIQUE ON clause is not in the targetlist
1715QUERY: delete from;
1816WARN:parser: parse error at or near ";"
19-
2017QUERY: delete from nonesuch;
2118WARN:nonesuch: Table does not exist.
2219QUERY: drop table;
2320WARN:parser: parse error at or near ";"
24-
2521QUERY: drop table nonesuch;
2622WARN:Relation nonesuch Does Not Exist!
2723QUERY: alter table rename;
2824WARN:parser: parse error at or near "rename"
29-
3025QUERY: alter table nonesuch rename to newnonesuch;
3126WARN:renamerel: relation "nonesuch" does not exist
3227QUERY: alter table nonesuch rename to stud_emp;
@@ -85,62 +80,46 @@ QUERY: create aggregate newcnt1 (sfunc2 = int4inc,
8580WARN:AggregateCreate: transition function 2 MUST have an initial value
8681QUERY: drop index;
8782WARN:parser: parse error at or near ";"
88-
8983QUERY: drop index 314159;
9084WARN:parser: parse error at or near "314159"
91-
9285QUERY: drop index nonesuch;
9386WARN:index "nonesuch" nonexistent
9487QUERY: drop aggregate;
9588WARN:parser: parse error at or near ";"
96-
9789QUERY: drop aggregate 314159;
9890WARN:parser: parse error at or near "314159"
99-
10091QUERY: drop aggregate nonesuch;
10192WARN:parser: parse error at or near ";"
102-
10393QUERY: drop aggregate newcnt1;
10494WARN:parser: parse error at or near ";"
105-
10695QUERY: drop aggregate newcnt nonesuch;
10796WARN:RemoveAggregate: type 'nonesuch' does not exist
10897QUERY: drop aggregate newcnt float4;
10998WARN:RemoveAggregate: aggregate 'newcnt' for 'float4' does not exist
11099QUERY: drop function ();
111100WARN:parser: parse error at or near "("
112-
113101QUERY: drop function 314159();
114102WARN:parser: parse error at or near "314159"
115-
116103QUERY: drop function nonesuch();
117104WARN:RemoveFunction: function nonesuch() does not exist
118105QUERY: drop type;
119106WARN:parser: parse error at or near ";"
120-
121107QUERY: drop type 314159;
122108WARN:parser: parse error at or near "314159"
123-
124109QUERY: drop type nonesuch;
125110WARN:RemoveType: type 'nonesuch' does not exist
126111QUERY: drop operator;
127112WARN:parser: parse error at or near ";"
128-
129113QUERY: drop operator equals;
130114WARN:parser: parse error at or near "equals"
131-
132115QUERY: drop operator ===;
133116WARN:parser: parse error at or near ";"
134-
135117QUERY: drop operator int4, int4;
136118WARN:parser: parse error at or near "int4"
137-
138119QUERY: drop operator (int4, int4);
139120WARN:parser: parse error at or near "("
140-
141121QUERY: drop operator === ();
142122WARN:parser: parse error at or near ")"
143-
144123QUERY: drop operator === (int4);
145124WARN:parser: argument type missing (use NONE for unary operators)
146125QUERY: drop operator === (int4, int4);
@@ -149,28 +128,21 @@ QUERY: drop operator = (nonesuch);
149128WARN:parser: argument type missing (use NONE for unary operators)
150129QUERY: drop operator = ( , int4);
151130WARN:parser: parse error at or near ","
152-
153131QUERY: drop operator = (nonesuch, int4);
154132WARN:RemoveOperator: type 'nonesuch' does not exist
155133QUERY: drop operator = (int4, nonesuch);
156134WARN:RemoveOperator: type 'nonesuch' does not exist
157135QUERY: drop operator = (int4, );
158136WARN:parser: parse error at or near ")"
159-
160137QUERY: drop rule;
161138WARN:parser: parse error at or near ";"
162-
163139QUERY: drop rule 314159;
164140WARN:parser: parse error at or near "314159"
165-
166141QUERY: drop rule nonesuch;
167142WARN:RewriteGetRuleEventRel: rule "nonesuch" not found
168143QUERY: drop tuple rule nonesuch;
169144WARN:parser: parse error at or near "tuple"
170-
171145QUERY: drop instance rule nonesuch;
172146WARN:parser: parse error at or near "instance"
173-
174147QUERY: drop rewrite rule nonesuch;
175148WARN:parser: parse error at or near "rewrite"
176-