This commit purported to use a variable hash seed for Partial
HashAggregate, but actually did the opposite - it made us use a
variable seed for any HashAggregate that is NOT partial.  Woops.
This commit is contained in:
Robert Haas 2017-01-06 09:34:26 -05:00
parent e5b7451ea3
commit 0355e6f310
1 changed files with 1 additions and 1 deletions

View File

@ -1738,7 +1738,7 @@ build_hash_table(AggState *aggstate)
additionalsize,
aggstate->aggcontexts[0]->ecxt_per_tuple_memory,
tmpmem,
!DO_AGGSPLIT_SKIPFINAL(aggstate->aggsplit));
DO_AGGSPLIT_SKIPFINAL(aggstate->aggsplit));
}
/*