aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas G. Lockhart <lockhart@fourpalms.org>1998-12-08 06:20:48 +0000
committerThomas G. Lockhart <lockhart@fourpalms.org>1998-12-08 06:20:48 +0000
commit053004a80b586d70365cf0a55749bf2ce8a92e0f (patch)
treeb96a957e1e9f11334fe2a63b7b521b5349445d74
parent53b476798a8ad8ba68041b599f517f971af198ed (diff)
downloadpostgresql-053004a80b586d70365cf0a55749bf2ce8a92e0f.tar.gz
postgresql-053004a80b586d70365cf0a55749bf2ce8a92e0f.zip
Clean up a few elog() messages for aggregates and functions.
-rw-r--r--src/test/regress/expected/select_implicit.out4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/expected/select_implicit.out b/src/test/regress/expected/select_implicit.out
index 9cc3e4d384e..2ee8b048223 100644
--- a/src/test/regress/expected/select_implicit.out
+++ b/src/test/regress/expected/select_implicit.out
@@ -32,7 +32,7 @@ count
(6 rows)
QUERY: SELECT count(*) FROM test_missing_target GROUP BY a ORDER BY b;
-ERROR: parser: illegal use of aggregates or non-group column in target list
+ERROR: Illegal use of aggregates or non-group column in target list
QUERY: SELECT count(*) FROM test_missing_target GROUP BY b ORDER BY b;
count
-----
@@ -191,7 +191,7 @@ count
(4 rows)
QUERY: SELECT count(a) FROM test_missing_target GROUP BY a ORDER BY b;
-ERROR: parser: illegal use of aggregates or non-group column in target list
+ERROR: Illegal use of aggregates or non-group column in target list
QUERY: SELECT count(b) FROM test_missing_target GROUP BY b/2 ORDER BY b/2;
count
-----