mirror of
https://github.com/postgres/postgres.git
synced 2025-10-21 02:52:47 +03:00
Fix comment in eager_aggregate.sql
The comment stated that eager aggregation is disabled by default, which is no longer true. This patch removes that comment as well as the related GUC set statement. Reported-by: David Rowley <dgrowleyml@gmail.com> Discussion: https://postgr.es/m/CAApHDvr4YWpiMR3RsgYwJWv-u8xoRqTAKRiYy9zUszjZOqG4Ug@mail.gmail.com
This commit is contained in:
@@ -2,8 +2,6 @@
|
||||
-- EAGER AGGREGATION
|
||||
-- Test we can push aggregation down below join
|
||||
--
|
||||
-- Enable eager aggregation, which by default is disabled.
|
||||
SET enable_eager_aggregate TO on;
|
||||
CREATE TABLE eager_agg_t1 (a int, b int, c double precision);
|
||||
CREATE TABLE eager_agg_t2 (a int, b int, c double precision);
|
||||
CREATE TABLE eager_agg_t3 (a int, b int, c double precision);
|
||||
|
@@ -3,9 +3,6 @@
|
||||
-- Test we can push aggregation down below join
|
||||
--
|
||||
|
||||
-- Enable eager aggregation, which by default is disabled.
|
||||
SET enable_eager_aggregate TO on;
|
||||
|
||||
CREATE TABLE eager_agg_t1 (a int, b int, c double precision);
|
||||
CREATE TABLE eager_agg_t2 (a int, b int, c double precision);
|
||||
CREATE TABLE eager_agg_t3 (a int, b int, c double precision);
|
||||
|
Reference in New Issue
Block a user