aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeSetOp.c
diff options
context:
space:
mode:
authorJeff Davis <jdavis@postgresql.org>2020-07-26 14:55:52 -0700
committerJeff Davis <jdavis@postgresql.org>2020-07-26 16:08:41 -0700
commit7f5f2249b27a46a4d91d6be5aff188ca67719fa7 (patch)
tree0c89edc111ee7eb1cbd606cfe8c3cb4d465f4a68 /src/backend/executor/nodeSetOp.c
parent21b0055359f036e3ba22402d14536431dd39242e (diff)
downloadpostgresql-7f5f2249b27a46a4d91d6be5aff188ca67719fa7.tar.gz
postgresql-7f5f2249b27a46a4d91d6be5aff188ca67719fa7.zip
Fix LookupTupleHashEntryHash() pipeline-stall issue.
Refactor hash lookups in nodeAgg.c to improve performance. Author: Andres Freund and Jeff Davis Discussion: https://postgr.es/m/20200612213715.op4ye4q7gktqvpuo%40alap3.anarazel.de Backpatch-through: 13
Diffstat (limited to 'src/backend/executor/nodeSetOp.c')
-rw-r--r--src/backend/executor/nodeSetOp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/executor/nodeSetOp.c b/src/backend/executor/nodeSetOp.c
index bfd148a41a2..8d4ccff19cc 100644
--- a/src/backend/executor/nodeSetOp.c
+++ b/src/backend/executor/nodeSetOp.c
@@ -381,7 +381,7 @@ setop_fill_hash_table(SetOpState *setopstate)
/* Find or build hashtable entry for this tuple's group */
entry = LookupTupleHashEntry(setopstate->hashtable, outerslot,
- &isnew);
+ &isnew, NULL);
/* If new tuple group, initialize counts */
if (isnew)
@@ -402,7 +402,7 @@ setop_fill_hash_table(SetOpState *setopstate)
/* For tuples not seen previously, do not make hashtable entry */
entry = LookupTupleHashEntry(setopstate->hashtable, outerslot,
- NULL);
+ NULL, NULL);
/* Advance the counts if entry is already present */
if (entry)