diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-11-21 00:42:20 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-11-21 00:42:20 +0000 |
commit | 6c1d4662afc6344ea7d98b5d1b248214ea0c7635 (patch) | |
tree | e6b29fb9ae4aeff58eb35947255375d2085bc709 /src/backend/utils/misc/postgresql.conf.sample | |
parent | 2676e11fdffb3ea1c56de9e22be4fb80b902f7fa (diff) |
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/backend/utils/misc/postgresql.conf.sample')
-rw-r--r-- | src/backend/utils/misc/postgresql.conf.sample | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample index 5fbfafd214a..1c4595a66bf 100644 --- a/src/backend/utils/misc/postgresql.conf.sample +++ b/src/backend/utils/misc/postgresql.conf.sample @@ -83,6 +83,7 @@ #enable_indexscan = true #enable_tidscan = true #enable_sort = true +#enable_hashagg = true #enable_nestloop = true #enable_mergejoin = true #enable_hashjoin = true |