1
1
QUERY: select 1
2
2
select
3
3
select * from nonesuch;
4
- WARN:parser: parse error at or near "select"
4
+ WARN:parser: syntax error at or near "select"
5
5
6
6
QUERY: select nonesuch from pg_database;
7
7
WARN:attribute "nonesuch" not found
@@ -10,22 +10,22 @@ WARN:attribute "nonesuch" not found
10
10
QUERY: select * from pg_database where pg_database.datname = nonesuch;
11
11
WARN:attribute "nonesuch" not found
12
12
QUERY: select distinct on foobar from pg_database;
13
- WARN:parser: parse error at or near "from"
13
+ WARN:parser: syntax error at or near "from"
14
14
15
15
QUERY: select distinct on foobar * from pg_database;
16
16
WARN:The field specified in the UNIQUE ON clause is not in the targetlist
17
17
QUERY: delete from;
18
- WARN:parser: parse error at or near ";"
18
+ WARN:parser: syntax error at or near ";"
19
19
20
20
QUERY: delete from nonesuch;
21
21
WARN:nonesuch: Table does not exist.
22
22
QUERY: drop table;
23
- WARN:parser: parse error at or near ";"
23
+ WARN:parser: syntax error at or near ";"
24
24
25
25
QUERY: drop table nonesuch;
26
26
WARN:Relation nonesuch Does Not Exist!
27
27
QUERY: alter table rename;
28
- WARN:parser: parse error at or near "rename"
28
+ WARN:parser: syntax error at or near "rename"
29
29
30
30
QUERY: alter table nonesuch rename to newnonesuch;
31
31
WARN:renamerel: relation "nonesuch" does not exist
@@ -84,54 +84,54 @@ QUERY: create aggregate newcnt1 (sfunc2 = int4inc,
84
84
stype2 = int4);
85
85
WARN:AggregateCreate: transition function 2 MUST have an initial value
86
86
QUERY: drop index;
87
- WARN:parser: parse error at or near ";"
87
+ WARN:parser: syntax error at or near ";"
88
88
89
89
QUERY: drop index 314159;
90
- WARN:parser: parse error at or near "314159"
90
+ WARN:parser: syntax error at or near "314159"
91
91
92
92
QUERY: drop index nonesuch;
93
93
WARN:index "nonesuch" nonexistent
94
94
QUERY: drop aggregate;
95
- WARN:parser: parse error at or near ";"
95
+ WARN:parser: syntax error at or near ";"
96
96
97
97
QUERY: drop aggregate 314159;
98
- WARN:parser: parse error at or near "314159"
98
+ WARN:parser: syntax error at or near "314159"
99
99
100
100
QUERY: drop aggregate nonesuch;
101
101
WARN:RemoveAggregate: aggregate 'nonesuch' does not exist
102
102
QUERY: drop function ();
103
- WARN:parser: parse error at or near "("
103
+ WARN:parser: syntax error at or near "("
104
104
105
105
QUERY: drop function 314159();
106
- WARN:parser: parse error at or near "314159"
106
+ WARN:parser: syntax error at or near "314159"
107
107
108
108
QUERY: drop function nonesuch();
109
109
WARN:RemoveFunction: function nonesuch() does not exist
110
110
QUERY: drop type;
111
- WARN:parser: parse error at or near ";"
111
+ WARN:parser: syntax error at or near ";"
112
112
113
113
QUERY: drop type 314159;
114
- WARN:parser: parse error at or near "314159"
114
+ WARN:parser: syntax error at or near "314159"
115
115
116
116
QUERY: drop type nonesuch;
117
117
WARN:RemoveType: type 'nonesuch' does not exist
118
118
QUERY: drop operator;
119
- WARN:parser: parse error at or near ";"
119
+ WARN:parser: syntax error at or near ";"
120
120
121
121
QUERY: drop operator equals;
122
- WARN:parser: parse error at or near "equals"
122
+ WARN:parser: syntax error at or near "equals"
123
123
124
124
QUERY: drop operator ===;
125
- WARN:parser: parse error at or near ";"
125
+ WARN:parser: syntax error at or near ";"
126
126
127
127
QUERY: drop operator int4, int4;
128
- WARN:parser: parse error at or near "int4"
128
+ WARN:parser: syntax error at or near "int4"
129
129
130
130
QUERY: drop operator (int4, int4);
131
- WARN:parser: parse error at or near "("
131
+ WARN:parser: syntax error at or near "("
132
132
133
133
QUERY: drop operator === ();
134
- WARN:parser: parse error at or near ")"
134
+ WARN:parser: syntax error at or near ")"
135
135
136
136
QUERY: drop operator === (int4);
137
137
WARN:parser: argument type missing (use NONE for unary operators)
@@ -140,29 +140,29 @@ WARN:RemoveOperator: binary operator '===' taking 'int4' and 'int4' does not exi
140
140
QUERY: drop operator = (nonesuch);
141
141
WARN:parser: argument type missing (use NONE for unary operators)
142
142
QUERY: drop operator = ( , int4);
143
- WARN:parser: parse error at or near ","
143
+ WARN:parser: syntax error at or near ","
144
144
145
145
QUERY: drop operator = (nonesuch, int4);
146
146
WARN:RemoveOperator: type 'nonesuch' does not exist
147
147
QUERY: drop operator = (int4, nonesuch);
148
148
WARN:RemoveOperator: type 'nonesuch' does not exist
149
149
QUERY: drop operator = (int4, );
150
- WARN:parser: parse error at or near ")"
150
+ WARN:parser: syntax error at or near ")"
151
151
152
152
QUERY: drop rule;
153
- WARN:parser: parse error at or near ";"
153
+ WARN:parser: syntax error at or near ";"
154
154
155
155
QUERY: drop rule 314159;
156
- WARN:parser: parse error at or near "314159"
156
+ WARN:parser: syntax error at or near "314159"
157
157
158
158
QUERY: drop rule nonesuch;
159
159
WARN:RewriteGetRuleEventRel: rule "nonesuch" not found
160
160
QUERY: drop tuple rule nonesuch;
161
- WARN:parser: parse error at or near "tuple"
161
+ WARN:parser: syntax error at or near "tuple"
162
162
163
163
QUERY: drop instance rule nonesuch;
164
- WARN:parser: parse error at or near "instance"
164
+ WARN:parser: syntax error at or near "instance"
165
165
166
166
QUERY: drop rewrite rule nonesuch;
167
- WARN:parser: parse error at or near "rewrite"
167
+ WARN:parser: syntax error at or near "rewrite"
168
168
0 commit comments