diff options
Diffstat (limited to 'src/test/regress/expected/select_implicit.out')
| -rw-r--r-- | src/test/regress/expected/select_implicit.out | 4 |
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 906cbbf338..4c8022d040 100644 --- a/src/test/regress/expected/select_implicit.out +++ b/src/test/regress/expected/select_implicit.out @@ -44,7 +44,7 @@ SELECT count(*) FROM test_missing_target GROUP BY test_missing_target.c ORDER BY -- w/o existing GROUP BY target and w/o existing a different ORDER BY target -- failure expected SELECT count(*) FROM test_missing_target GROUP BY a ORDER BY b; -ERROR: column "test_missing_target.b" must appear in GROUP BY clause or used in an aggregate function +ERROR: column "test_missing_target.b" must appear in the GROUP BY clause or be used in an aggregate function -- w/o existing GROUP BY target and w/o existing same ORDER BY target SELECT count(*) FROM test_missing_target GROUP BY b ORDER BY b; count @@ -235,7 +235,7 @@ ORDER BY lower(test_missing_target.c); -- w/o existing GROUP BY target and w/o existing a different ORDER BY target -- failure expected SELECT count(a) FROM test_missing_target GROUP BY a ORDER BY b; -ERROR: column "test_missing_target.b" must appear in GROUP BY clause or used in an aggregate function +ERROR: column "test_missing_target.b" must appear in the GROUP BY clause or be used in an aggregate function -- w/o existing GROUP BY target and w/o existing same ORDER BY target SELECT count(b) FROM test_missing_target GROUP BY b/2 ORDER BY b/2; count |
