summaryrefslogtreecommitdiff
path: root/src/test/regress/input/misc.source
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2002-11-21 00:42:20 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2002-11-21 00:42:20 +0000
commit6c1d4662afc6344ea7d98b5d1b248214ea0c7635 (patch)
treee6b29fb9ae4aeff58eb35947255375d2085bc709 /src/test/regress/input/misc.source
parent2676e11fdffb3ea1c56de9e22be4fb80b902f7fa (diff)
downloadpostgresql-6c1d4662afc6344ea7d98b5d1b248214ea0c7635.tar.gz
Finish implementation of hashed aggregation. Add enable_hashagg GUC
parameter to allow it to be forced off for comparison purposes. Add ORDER BY clauses to a bunch of regression test queries that will otherwise produce randomly-ordered output in the new regime.
Diffstat (limited to 'src/test/regress/input/misc.source')
-rw-r--r--src/test/regress/input/misc.source2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/regress/input/misc.source b/src/test/regress/input/misc.source
index 18bf4e8af7..c10f73c5c6 100644
--- a/src/test/regress/input/misc.source
+++ b/src/test/regress/input/misc.source
@@ -105,7 +105,7 @@ SELECT * FROM f_star* x WHERE x.c ISNULL;
SELECT sum(a) FROM a_star*;
-SELECT class, sum(a) FROM a_star* GROUP BY class;
+SELECT class, sum(a) FROM a_star* GROUP BY class ORDER BY class;
ALTER TABLE f_star RENAME COLUMN f TO ff;