Repair commit b81b5a96f424531b97cdd1dba97d9d1b9c9d372e.
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:
parent
e5b7451ea3
commit
0355e6f310
@ -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));
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user