File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/test/regress/expected Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 32
32
(6 rows)
33
33
34
34
QUERY: SELECT count(*) FROM test_missing_target GROUP BY a ORDER BY b;
35
- ERROR: parser: illegal use of aggregates or non-group column in target list
35
+ ERROR: Illegal use of aggregates or non-group column in target list
36
36
QUERY: SELECT count(*) FROM test_missing_target GROUP BY b ORDER BY b;
37
37
count
38
38
-----
@@ -191,7 +191,7 @@ count
191
191
(4 rows)
192
192
193
193
QUERY: SELECT count(a) FROM test_missing_target GROUP BY a ORDER BY b;
194
- ERROR: parser: illegal use of aggregates or non-group column in target list
194
+ ERROR: Illegal use of aggregates or non-group column in target list
195
195
QUERY: SELECT count(b) FROM test_missing_target GROUP BY b/2 ORDER BY b/2;
196
196
count
197
197
-----
You can’t perform that action at this time.
0 commit comments