From: Thomas G. Lockhart Date: Tue, 8 Dec 1998 06:20:48 +0000 (+0000) Subject: Clean up a few elog() messages for aggregates and functions. X-Git-Tag: REL6_5~934 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=053004a80b586d70365cf0a55749bf2ce8a92e0f;p=thirdparty%2Fpostgresql.git Clean up a few elog() messages for aggregates and functions. --- 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 -----