diff options
Diffstat (limited to 'src/backend/executor/nodeHashjoin.c')
-rw-r--r-- | src/backend/executor/nodeHashjoin.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/backend/executor/nodeHashjoin.c b/src/backend/executor/nodeHashjoin.c index 4f4eb701d3c..26d7bde3353 100644 --- a/src/backend/executor/nodeHashjoin.c +++ b/src/backend/executor/nodeHashjoin.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/executor/nodeHashjoin.c,v 1.68 2005/03/06 22:15:04 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/executor/nodeHashjoin.c,v 1.69 2005/03/16 21:38:07 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -188,7 +188,8 @@ ExecHashJoin(HashJoinState *node) * Save it in the corresponding outer-batch file. */ Assert(batchno > hashtable->curbatch); - ExecHashJoinSaveTuple(outerTupleSlot->val, hashvalue, + ExecHashJoinSaveTuple(ExecFetchSlotTuple(outerTupleSlot), + hashvalue, &hashtable->outerBatchFile[batchno]); node->hj_NeedNewOuter = true; continue; /* loop around for a new outer tuple */ @@ -652,7 +653,9 @@ start_over: * NOTE: some tuples may be sent to future batches. Also, * it is possible for hashtable->nbatch to be increased here! */ - ExecHashTableInsert(hashtable, slot->val, hashvalue); + ExecHashTableInsert(hashtable, + ExecFetchSlotTuple(slot), + hashvalue); } /* |