PostgreSQL Source Code  git master
nodeHashjoin.h File Reference
#include "access/parallel.h"
#include "nodes/execnodes.h"
#include "storage/buffile.h"
Include dependency graph for nodeHashjoin.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

HashJoinStateExecInitHashJoin (HashJoin *node, EState *estate, int eflags)
 
void ExecEndHashJoin (HashJoinState *node)
 
void ExecReScanHashJoin (HashJoinState *node)
 
void ExecShutdownHashJoin (HashJoinState *node)
 
void ExecHashJoinEstimate (HashJoinState *state, ParallelContext *pcxt)
 
void ExecHashJoinInitializeDSM (HashJoinState *state, ParallelContext *pcxt)
 
void ExecHashJoinReInitializeDSM (HashJoinState *state, ParallelContext *pcxt)
 
void ExecHashJoinInitializeWorker (HashJoinState *state, ParallelWorkerContext *pwcxt)
 
void ExecHashJoinSaveTuple (MinimalTuple tuple, uint32 hashvalue, BufFile **fileptr, HashJoinTable hashtable)
 

Function Documentation

◆ ExecEndHashJoin()

void ExecEndHashJoin ( HashJoinState node)

Definition at line 868 of file nodeHashjoin.c.

869 {
870  /*
871  * Free hash table
872  */
873  if (node->hj_HashTable)
874  {
876  node->hj_HashTable = NULL;
877  }
878 
879  /*
880  * clean up subtrees
881  */
884 }
void ExecEndNode(PlanState *node)
Definition: execProcnode.c:557
#define outerPlanState(node)
Definition: execnodes.h:1212
#define innerPlanState(node)
Definition: execnodes.h:1211
void ExecHashTableDestroy(HashJoinTable hashtable)
Definition: nodeHash.c:883
HashJoinTable hj_HashTable
Definition: execnodes.h:2220

References ExecEndNode(), ExecHashTableDestroy(), HashJoinState::hj_HashTable, innerPlanState, and outerPlanState.

Referenced by ExecEndNode().

◆ ExecHashJoinEstimate()

void ExecHashJoinEstimate ( HashJoinState state,
ParallelContext pcxt 
)

Definition at line 1553 of file nodeHashjoin.c.

1554 {
1556  shm_toc_estimate_keys(&pcxt->estimator, 1);
1557 }
#define shm_toc_estimate_chunk(e, sz)
Definition: shm_toc.h:51
#define shm_toc_estimate_keys(e, cnt)
Definition: shm_toc.h:53
shm_toc_estimator estimator
Definition: parallel.h:41

References ParallelContext::estimator, shm_toc_estimate_chunk, and shm_toc_estimate_keys.

Referenced by ExecParallelEstimate().

◆ ExecHashJoinInitializeDSM()

void ExecHashJoinInitializeDSM ( HashJoinState state,
ParallelContext pcxt 
)

Definition at line 1560 of file nodeHashjoin.c.

1561 {
1562  int plan_node_id = state->js.ps.plan->plan_node_id;
1563  HashState *hashNode;
1564  ParallelHashJoinState *pstate;
1565 
1566  /*
1567  * Disable shared hash table mode if we failed to create a real DSM
1568  * segment, because that means that we don't have a DSA area to work with.
1569  */
1570  if (pcxt->seg == NULL)
1571  return;
1572 
1574 
1575  /*
1576  * Set up the state needed to coordinate access to the shared hash
1577  * table(s), using the plan node ID as the toc key.
1578  */
1579  pstate = shm_toc_allocate(pcxt->toc, sizeof(ParallelHashJoinState));
1580  shm_toc_insert(pcxt->toc, plan_node_id, pstate);
1581 
1582  /*
1583  * Set up the shared hash join state with no batches initially.
1584  * ExecHashTableCreate() will prepare at least one later and set nbatch
1585  * and space_allowed.
1586  */
1587  pstate->nbatch = 0;
1588  pstate->space_allowed = 0;
1589  pstate->batches = InvalidDsaPointer;
1590  pstate->old_batches = InvalidDsaPointer;
1591  pstate->nbuckets = 0;
1592  pstate->growth = PHJ_GROWTH_OK;
1594  pg_atomic_init_u32(&pstate->distributor, 0);
1595  pstate->nparticipants = pcxt->nworkers + 1;
1596  pstate->total_tuples = 0;
1597  LWLockInitialize(&pstate->lock,
1599  BarrierInit(&pstate->build_barrier, 0);
1600  BarrierInit(&pstate->grow_batches_barrier, 0);
1601  BarrierInit(&pstate->grow_buckets_barrier, 0);
1602 
1603  /* Set up the space we'll use for shared temporary files. */
1604  SharedFileSetInit(&pstate->fileset, pcxt->seg);
1605 
1606  /* Initialize the shared state in the hash node. */
1607  hashNode = (HashState *) innerPlanState(state);
1608  hashNode->parallel_state = pstate;
1609 }
static void pg_atomic_init_u32(volatile pg_atomic_uint32 *ptr, uint32 val)
Definition: atomics.h:214
void BarrierInit(Barrier *barrier, int participants)
Definition: barrier.c:100
#define InvalidDsaPointer
Definition: dsa.h:78
void ExecSetExecProcNode(PlanState *node, ExecProcNodeMtd function)
Definition: execProcnode.c:425
@ PHJ_GROWTH_OK
Definition: hashjoin.h:233
void LWLockInitialize(LWLock *lock, int tranche_id)
Definition: lwlock.c:707
@ LWTRANCHE_PARALLEL_HASH_JOIN
Definition: lwlock.h:194
static TupleTableSlot * ExecParallelHashJoin(PlanState *pstate)
Definition: nodeHashjoin.c:702
void SharedFileSetInit(SharedFileSet *fileset, dsm_segment *seg)
Definition: sharedfileset.c:38
void shm_toc_insert(shm_toc *toc, uint64 key, void *address)
Definition: shm_toc.c:171
void * shm_toc_allocate(shm_toc *toc, Size nbytes)
Definition: shm_toc.c:88
struct ParallelHashJoinState * parallel_state
Definition: execnodes.h:2790
dsm_segment * seg
Definition: parallel.h:42
shm_toc * toc
Definition: parallel.h:44
Barrier grow_batches_barrier
Definition: hashjoin.h:261
dsa_pointer old_batches
Definition: hashjoin.h:249
dsa_pointer chunk_work_queue
Definition: hashjoin.h:254
Barrier grow_buckets_barrier
Definition: hashjoin.h:262
ParallelHashGrowth growth
Definition: hashjoin.h:253
pg_atomic_uint32 distributor
Definition: hashjoin.h:263
SharedFileSet fileset
Definition: hashjoin.h:265
dsa_pointer batches
Definition: hashjoin.h:248
Definition: regguts.h:323

References BarrierInit(), ParallelHashJoinState::batches, ParallelHashJoinState::build_barrier, ParallelHashJoinState::chunk_work_queue, ParallelHashJoinState::distributor, ExecParallelHashJoin(), ExecSetExecProcNode(), ParallelHashJoinState::fileset, ParallelHashJoinState::grow_batches_barrier, ParallelHashJoinState::grow_buckets_barrier, ParallelHashJoinState::growth, innerPlanState, InvalidDsaPointer, ParallelHashJoinState::lock, LWLockInitialize(), LWTRANCHE_PARALLEL_HASH_JOIN, ParallelHashJoinState::nbatch, ParallelHashJoinState::nbuckets, ParallelHashJoinState::nparticipants, ParallelContext::nworkers, ParallelHashJoinState::old_batches, HashState::parallel_state, pg_atomic_init_u32(), PHJ_GROWTH_OK, ParallelContext::seg, SharedFileSetInit(), shm_toc_allocate(), shm_toc_insert(), ParallelHashJoinState::space_allowed, ParallelContext::toc, and ParallelHashJoinState::total_tuples.

Referenced by ExecParallelInitializeDSM().

◆ ExecHashJoinInitializeWorker()

void ExecHashJoinInitializeWorker ( HashJoinState state,
ParallelWorkerContext pwcxt 
)

Definition at line 1651 of file nodeHashjoin.c.

1653 {
1654  HashState *hashNode;
1655  int plan_node_id = state->js.ps.plan->plan_node_id;
1656  ParallelHashJoinState *pstate =
1657  shm_toc_lookup(pwcxt->toc, plan_node_id, false);
1658 
1659  /* Attach to the space for shared temporary files. */
1660  SharedFileSetAttach(&pstate->fileset, pwcxt->seg);
1661 
1662  /* Attach to the shared state in the hash node. */
1663  hashNode = (HashState *) innerPlanState(state);
1664  hashNode->parallel_state = pstate;
1665 
1667 }
void SharedFileSetAttach(SharedFileSet *fileset, dsm_segment *seg)
Definition: sharedfileset.c:56
void * shm_toc_lookup(shm_toc *toc, uint64 key, bool noError)
Definition: shm_toc.c:232
dsm_segment * seg
Definition: parallel.h:52

References ExecParallelHashJoin(), ExecSetExecProcNode(), ParallelHashJoinState::fileset, innerPlanState, HashState::parallel_state, ParallelWorkerContext::seg, SharedFileSetAttach(), shm_toc_lookup(), and ParallelWorkerContext::toc.

Referenced by ExecParallelInitializeWorker().

◆ ExecHashJoinReInitializeDSM()

void ExecHashJoinReInitializeDSM ( HashJoinState state,
ParallelContext pcxt 
)

Definition at line 1618 of file nodeHashjoin.c.

1619 {
1620  int plan_node_id = state->js.ps.plan->plan_node_id;
1621  ParallelHashJoinState *pstate =
1622  shm_toc_lookup(pcxt->toc, plan_node_id, false);
1623 
1624  /*
1625  * It would be possible to reuse the shared hash table in single-batch
1626  * cases by resetting and then fast-forwarding build_barrier to
1627  * PHJ_BUILD_FREE and batch 0's batch_barrier to PHJ_BATCH_PROBE, but
1628  * currently shared hash tables are already freed by now (by the last
1629  * participant to detach from the batch). We could consider keeping it
1630  * around for single-batch joins. We'd also need to adjust
1631  * finalize_plan() so that it doesn't record a dummy dependency for
1632  * Parallel Hash nodes, preventing the rescan optimization. For now we
1633  * don't try.
1634  */
1635 
1636  /* Detach, freeing any remaining shared memory. */
1637  if (state->hj_HashTable != NULL)
1638  {
1639  ExecHashTableDetachBatch(state->hj_HashTable);
1640  ExecHashTableDetach(state->hj_HashTable);
1641  }
1642 
1643  /* Clear any shared batch files. */
1644  SharedFileSetDeleteAll(&pstate->fileset);
1645 
1646  /* Reset build_barrier to PHJ_BUILD_ELECT so we can go around again. */
1647  BarrierInit(&pstate->build_barrier, 0);
1648 }
void ExecHashTableDetachBatch(HashJoinTable hashtable)
Definition: nodeHash.c:3282
void ExecHashTableDetach(HashJoinTable hashtable)
Definition: nodeHash.c:3374
void SharedFileSetDeleteAll(SharedFileSet *fileset)
Definition: sharedfileset.c:83

References BarrierInit(), ParallelHashJoinState::build_barrier, ExecHashTableDetach(), ExecHashTableDetachBatch(), ParallelHashJoinState::fileset, SharedFileSetDeleteAll(), shm_toc_lookup(), and ParallelContext::toc.

Referenced by ExecParallelReInitializeDSM().

◆ ExecHashJoinSaveTuple()

void ExecHashJoinSaveTuple ( MinimalTuple  tuple,
uint32  hashvalue,
BufFile **  fileptr,
HashJoinTable  hashtable 
)

Definition at line 1324 of file nodeHashjoin.c.

1326 {
1327  BufFile *file = *fileptr;
1328 
1329  /*
1330  * The batch file is lazily created. If this is the first tuple written to
1331  * this batch, the batch file is created and its buffer is allocated in
1332  * the spillCxt context, NOT in the batchCxt.
1333  *
1334  * During the build phase, buffered files are created for inner batches.
1335  * Each batch's buffered file is closed (and its buffer freed) after the
1336  * batch is loaded into memory during the outer side scan. Therefore, it
1337  * is necessary to allocate the batch file buffer in a memory context
1338  * which outlives the batch itself.
1339  *
1340  * Also, we use spillCxt instead of hashCxt for a better accounting of the
1341  * spilling memory consumption.
1342  */
1343  if (file == NULL)
1344  {
1345  MemoryContext oldctx = MemoryContextSwitchTo(hashtable->spillCxt);
1346 
1347  file = BufFileCreateTemp(false);
1348  *fileptr = file;
1349 
1350  MemoryContextSwitchTo(oldctx);
1351  }
1352 
1353  BufFileWrite(file, &hashvalue, sizeof(uint32));
1354  BufFileWrite(file, tuple, tuple->t_len);
1355 }
BufFile * BufFileCreateTemp(bool interXact)
Definition: buffile.c:193
void BufFileWrite(BufFile *file, const void *ptr, size_t size)
Definition: buffile.c:676
unsigned int uint32
Definition: c.h:506
MemoryContextSwitchTo(old_ctx)
MemoryContext spillCxt
Definition: hashjoin.h:364

References BufFileCreateTemp(), BufFileWrite(), MemoryContextSwitchTo(), HashJoinTableData::spillCxt, and MinimalTupleData::t_len.

Referenced by ExecHashIncreaseNumBatches(), ExecHashJoinImpl(), ExecHashRemoveNextSkewBucket(), and ExecHashTableInsert().

◆ ExecInitHashJoin()

HashJoinState* ExecInitHashJoin ( HashJoin node,
EState estate,
int  eflags 
)

Definition at line 718 of file nodeHashjoin.c.

719 {
720  HashJoinState *hjstate;
721  Plan *outerNode;
722  Hash *hashNode;
723  TupleDesc outerDesc,
724  innerDesc;
725  const TupleTableSlotOps *ops;
726 
727  /* check for unsupported flags */
728  Assert(!(eflags & (EXEC_FLAG_BACKWARD | EXEC_FLAG_MARK)));
729 
730  /*
731  * create state structure
732  */
733  hjstate = makeNode(HashJoinState);
734  hjstate->js.ps.plan = (Plan *) node;
735  hjstate->js.ps.state = estate;
736 
737  /*
738  * See ExecHashJoinInitializeDSM() and ExecHashJoinInitializeWorker()
739  * where this function may be replaced with a parallel version, if we
740  * managed to launch a parallel query.
741  */
742  hjstate->js.ps.ExecProcNode = ExecHashJoin;
743  hjstate->js.jointype = node->join.jointype;
744 
745  /*
746  * Miscellaneous initialization
747  *
748  * create expression context for node
749  */
750  ExecAssignExprContext(estate, &hjstate->js.ps);
751 
752  /*
753  * initialize child nodes
754  *
755  * Note: we could suppress the REWIND flag for the inner input, which
756  * would amount to betting that the hash will be a single batch. Not
757  * clear if this would be a win or not.
758  */
759  outerNode = outerPlan(node);
760  hashNode = (Hash *) innerPlan(node);
761 
762  outerPlanState(hjstate) = ExecInitNode(outerNode, estate, eflags);
763  outerDesc = ExecGetResultType(outerPlanState(hjstate));
764  innerPlanState(hjstate) = ExecInitNode((Plan *) hashNode, estate, eflags);
765  innerDesc = ExecGetResultType(innerPlanState(hjstate));
766 
767  /*
768  * Initialize result slot, type and projection.
769  */
771  ExecAssignProjectionInfo(&hjstate->js.ps, NULL);
772 
773  /*
774  * tuple table initialization
775  */
776  ops = ExecGetResultSlotOps(outerPlanState(hjstate), NULL);
777  hjstate->hj_OuterTupleSlot = ExecInitExtraTupleSlot(estate, outerDesc,
778  ops);
779 
780  /*
781  * detect whether we need only consider the first matching inner tuple
782  */
783  hjstate->js.single_match = (node->join.inner_unique ||
784  node->join.jointype == JOIN_SEMI);
785 
786  /* set up null tuples for outer joins, if needed */
787  switch (node->join.jointype)
788  {
789  case JOIN_INNER:
790  case JOIN_SEMI:
791  case JOIN_RIGHT_SEMI:
792  break;
793  case JOIN_LEFT:
794  case JOIN_ANTI:
795  hjstate->hj_NullInnerTupleSlot =
796  ExecInitNullTupleSlot(estate, innerDesc, &TTSOpsVirtual);
797  break;
798  case JOIN_RIGHT:
799  case JOIN_RIGHT_ANTI:
800  hjstate->hj_NullOuterTupleSlot =
801  ExecInitNullTupleSlot(estate, outerDesc, &TTSOpsVirtual);
802  break;
803  case JOIN_FULL:
804  hjstate->hj_NullOuterTupleSlot =
805  ExecInitNullTupleSlot(estate, outerDesc, &TTSOpsVirtual);
806  hjstate->hj_NullInnerTupleSlot =
807  ExecInitNullTupleSlot(estate, innerDesc, &TTSOpsVirtual);
808  break;
809  default:
810  elog(ERROR, "unrecognized join type: %d",
811  (int) node->join.jointype);
812  }
813 
814  /*
815  * now for some voodoo. our temporary tuple slot is actually the result
816  * tuple slot of the Hash node (which is our inner plan). we can do this
817  * because Hash nodes don't return tuples via ExecProcNode() -- instead
818  * the hash join node uses ExecScanHashBucket() to get at the contents of
819  * the hash table. -cim 6/9/91
820  */
821  {
822  HashState *hashstate = (HashState *) innerPlanState(hjstate);
823  TupleTableSlot *slot = hashstate->ps.ps_ResultTupleSlot;
824 
825  hjstate->hj_HashTupleSlot = slot;
826  }
827 
828  /*
829  * initialize child expressions
830  */
831  hjstate->js.ps.qual =
832  ExecInitQual(node->join.plan.qual, (PlanState *) hjstate);
833  hjstate->js.joinqual =
834  ExecInitQual(node->join.joinqual, (PlanState *) hjstate);
835  hjstate->hashclauses =
836  ExecInitQual(node->hashclauses, (PlanState *) hjstate);
837 
838  /*
839  * initialize hash-specific info
840  */
841  hjstate->hj_HashTable = NULL;
842  hjstate->hj_FirstOuterTupleSlot = NULL;
843 
844  hjstate->hj_CurHashValue = 0;
845  hjstate->hj_CurBucketNo = 0;
847  hjstate->hj_CurTuple = NULL;
848 
849  hjstate->hj_OuterHashKeys = ExecInitExprList(node->hashkeys,
850  (PlanState *) hjstate);
851  hjstate->hj_HashOperators = node->hashoperators;
852  hjstate->hj_Collations = node->hashcollations;
853 
854  hjstate->hj_JoinState = HJ_BUILD_HASHTABLE;
855  hjstate->hj_MatchedOuter = false;
856  hjstate->hj_OuterNotEmpty = false;
857 
858  return hjstate;
859 }
#define Assert(condition)
Definition: c.h:858
#define ERROR
Definition: elog.h:39
#define elog(elevel,...)
Definition: elog.h:224
List * ExecInitExprList(List *nodes, PlanState *parent)
Definition: execExpr.c:326
ExprState * ExecInitQual(List *qual, PlanState *parent)
Definition: execExpr.c:220
PlanState * ExecInitNode(Plan *node, EState *estate, int eflags)
Definition: execProcnode.c:142
const TupleTableSlotOps TTSOpsVirtual
Definition: execTuples.c:84
TupleTableSlot * ExecInitNullTupleSlot(EState *estate, TupleDesc tupType, const TupleTableSlotOps *tts_ops)
Definition: execTuples.c:1934
TupleTableSlot * ExecInitExtraTupleSlot(EState *estate, TupleDesc tupledesc, const TupleTableSlotOps *tts_ops)
Definition: execTuples.c:1918
void ExecInitResultTupleSlotTL(PlanState *planstate, const TupleTableSlotOps *tts_ops)
Definition: execTuples.c:1886
TupleDesc ExecGetResultType(PlanState *planstate)
Definition: execUtils.c:493
const TupleTableSlotOps * ExecGetResultSlotOps(PlanState *planstate, bool *isfixed)
Definition: execUtils.c:502
void ExecAssignExprContext(EState *estate, PlanState *planstate)
Definition: execUtils.c:483
void ExecAssignProjectionInfo(PlanState *planstate, TupleDesc inputDesc)
Definition: execUtils.c:538
#define EXEC_FLAG_BACKWARD
Definition: executor.h:68
#define EXEC_FLAG_MARK
Definition: executor.h:69
#define INVALID_SKEW_BUCKET_NO
Definition: hashjoin.h:120
static TupleTableSlot * ExecHashJoin(PlanState *pstate)
Definition: nodeHashjoin.c:686
#define HJ_BUILD_HASHTABLE
Definition: nodeHashjoin.c:179
#define makeNode(_type_)
Definition: nodes.h:155
@ JOIN_SEMI
Definition: nodes.h:307
@ JOIN_FULL
Definition: nodes.h:295
@ JOIN_INNER
Definition: nodes.h:293
@ JOIN_RIGHT
Definition: nodes.h:296
@ JOIN_RIGHT_SEMI
Definition: nodes.h:309
@ JOIN_LEFT
Definition: nodes.h:294
@ JOIN_RIGHT_ANTI
Definition: nodes.h:310
@ JOIN_ANTI
Definition: nodes.h:308
#define innerPlan(node)
Definition: plannodes.h:181
#define outerPlan(node)
Definition: plannodes.h:182
HashJoinTuple hj_CurTuple
Definition: execnodes.h:2224
int hj_CurSkewBucketNo
Definition: execnodes.h:2223
List * hj_OuterHashKeys
Definition: execnodes.h:2217
TupleTableSlot * hj_NullOuterTupleSlot
Definition: execnodes.h:2227
TupleTableSlot * hj_OuterTupleSlot
Definition: execnodes.h:2225
bool hj_OuterNotEmpty
Definition: execnodes.h:2232
TupleTableSlot * hj_NullInnerTupleSlot
Definition: execnodes.h:2228
List * hj_HashOperators
Definition: execnodes.h:2218
ExprState * hashclauses
Definition: execnodes.h:2216
JoinState js
Definition: execnodes.h:2215
TupleTableSlot * hj_FirstOuterTupleSlot
Definition: execnodes.h:2229
bool hj_MatchedOuter
Definition: execnodes.h:2231
uint32 hj_CurHashValue
Definition: execnodes.h:2221
List * hj_Collations
Definition: execnodes.h:2219
int hj_CurBucketNo
Definition: execnodes.h:2222
TupleTableSlot * hj_HashTupleSlot
Definition: execnodes.h:2226
List * hashcollations
Definition: plannodes.h:867
List * hashclauses
Definition: plannodes.h:865
List * hashoperators
Definition: plannodes.h:866
Join join
Definition: plannodes.h:864
List * hashkeys
Definition: plannodes.h:873
PlanState ps
Definition: execnodes.h:2770
JoinType jointype
Definition: execnodes.h:2113
PlanState ps
Definition: execnodes.h:2112
ExprState * joinqual
Definition: execnodes.h:2116
bool single_match
Definition: execnodes.h:2114
List * joinqual
Definition: plannodes.h:793
JoinType jointype
Definition: plannodes.h:791
bool inner_unique
Definition: plannodes.h:792
ExprState * qual
Definition: execnodes.h:1137
Plan * plan
Definition: execnodes.h:1116
EState * state
Definition: execnodes.h:1118
TupleTableSlot * ps_ResultTupleSlot
Definition: execnodes.h:1154
ExecProcNodeMtd ExecProcNode
Definition: execnodes.h:1122

References Assert, elog, ERROR, EXEC_FLAG_BACKWARD, EXEC_FLAG_MARK, ExecAssignExprContext(), ExecAssignProjectionInfo(), ExecGetResultSlotOps(), ExecGetResultType(), ExecHashJoin(), ExecInitExprList(), ExecInitExtraTupleSlot(), ExecInitNode(), ExecInitNullTupleSlot(), ExecInitQual(), ExecInitResultTupleSlotTL(), PlanState::ExecProcNode, HashJoinState::hashclauses, HashJoin::hashclauses, HashJoin::hashcollations, HashJoin::hashkeys, HashJoin::hashoperators, HJ_BUILD_HASHTABLE, HashJoinState::hj_Collations, HashJoinState::hj_CurBucketNo, HashJoinState::hj_CurHashValue, HashJoinState::hj_CurSkewBucketNo, HashJoinState::hj_CurTuple, HashJoinState::hj_FirstOuterTupleSlot, HashJoinState::hj_HashOperators, HashJoinState::hj_HashTable, HashJoinState::hj_HashTupleSlot, HashJoinState::hj_JoinState, HashJoinState::hj_MatchedOuter, HashJoinState::hj_NullInnerTupleSlot, HashJoinState::hj_NullOuterTupleSlot, HashJoinState::hj_OuterHashKeys, HashJoinState::hj_OuterNotEmpty, HashJoinState::hj_OuterTupleSlot, Join::inner_unique, innerPlan, innerPlanState, INVALID_SKEW_BUCKET_NO, HashJoin::join, JOIN_ANTI, JOIN_FULL, JOIN_INNER, JOIN_LEFT, JOIN_RIGHT, JOIN_RIGHT_ANTI, JOIN_RIGHT_SEMI, JOIN_SEMI, JoinState::joinqual, Join::joinqual, JoinState::jointype, Join::jointype, HashJoinState::js, makeNode, outerPlan, outerPlanState, PlanState::plan, JoinState::ps, HashState::ps, PlanState::ps_ResultTupleSlot, PlanState::qual, JoinState::single_match, PlanState::state, and TTSOpsVirtual.

Referenced by ExecInitNode().

◆ ExecReScanHashJoin()

void ExecReScanHashJoin ( HashJoinState node)

Definition at line 1404 of file nodeHashjoin.c.

1405 {
1408 
1409  /*
1410  * In a multi-batch join, we currently have to do rescans the hard way,
1411  * primarily because batch temp files may have already been released. But
1412  * if it's a single-batch join, and there is no parameter change for the
1413  * inner subnode, then we can just re-use the existing hash table without
1414  * rebuilding it.
1415  */
1416  if (node->hj_HashTable != NULL)
1417  {
1418  if (node->hj_HashTable->nbatch == 1 &&
1419  innerPlan->chgParam == NULL)
1420  {
1421  /*
1422  * Okay to reuse the hash table; needn't rescan inner, either.
1423  *
1424  * However, if it's a right/right-anti/full join, we'd better
1425  * reset the inner-tuple match flags contained in the table.
1426  */
1427  if (HJ_FILL_INNER(node))
1429 
1430  /*
1431  * Also, we need to reset our state about the emptiness of the
1432  * outer relation, so that the new scan of the outer will update
1433  * it correctly if it turns out to be empty this time. (There's no
1434  * harm in clearing it now because ExecHashJoin won't need the
1435  * info. In the other cases, where the hash table doesn't exist
1436  * or we are destroying it, we leave this state alone because
1437  * ExecHashJoin will need it the first time through.)
1438  */
1439  node->hj_OuterNotEmpty = false;
1440 
1441  /* ExecHashJoin can skip the BUILD_HASHTABLE step */
1443  }
1444  else
1445  {
1446  /* must destroy and rebuild hash table */
1447  HashState *hashNode = castNode(HashState, innerPlan);
1448 
1449  Assert(hashNode->hashtable == node->hj_HashTable);
1450  /* accumulate stats from old hash table, if wanted */
1451  /* (this should match ExecShutdownHash) */
1452  if (hashNode->ps.instrument && !hashNode->hinstrument)
1453  hashNode->hinstrument = (HashInstrumentation *)
1454  palloc0(sizeof(HashInstrumentation));
1455  if (hashNode->hinstrument)
1457  hashNode->hashtable);
1458  /* for safety, be sure to clear child plan node's pointer too */
1459  hashNode->hashtable = NULL;
1460 
1462  node->hj_HashTable = NULL;
1464 
1465  /*
1466  * if chgParam of subnode is not null then plan will be re-scanned
1467  * by first ExecProcNode.
1468  */
1469  if (innerPlan->chgParam == NULL)
1471  }
1472  }
1473 
1474  /* Always reset intra-tuple state */
1475  node->hj_CurHashValue = 0;
1476  node->hj_CurBucketNo = 0;
1478  node->hj_CurTuple = NULL;
1479 
1480  node->hj_MatchedOuter = false;
1481  node->hj_FirstOuterTupleSlot = NULL;
1482 
1483  /*
1484  * if chgParam of subnode is not null then plan will be re-scanned by
1485  * first ExecProcNode.
1486  */
1487  if (outerPlan->chgParam == NULL)
1489 }
void ExecReScan(PlanState *node)
Definition: execAmi.c:76
void * palloc0(Size size)
Definition: mcxt.c:1347
void ExecHashAccumInstrumentation(HashInstrumentation *instrument, HashJoinTable hashtable)
Definition: nodeHash.c:2850
void ExecHashTableResetMatchFlags(HashJoinTable hashtable)
Definition: nodeHash.c:2327
#define HJ_FILL_INNER(hjstate)
Definition: nodeHashjoin.c:189
#define HJ_NEED_NEW_OUTER
Definition: nodeHashjoin.c:180
#define castNode(_type_, nodeptr)
Definition: nodes.h:176
HashJoinTable hashtable
Definition: execnodes.h:2771
HashInstrumentation * hinstrument
Definition: execnodes.h:2787
Instrumentation * instrument
Definition: execnodes.h:1126

References Assert, castNode, ExecHashAccumInstrumentation(), ExecHashTableDestroy(), ExecHashTableResetMatchFlags(), ExecReScan(), HashState::hashtable, HashState::hinstrument, HJ_BUILD_HASHTABLE, HashJoinState::hj_CurBucketNo, HashJoinState::hj_CurHashValue, HashJoinState::hj_CurSkewBucketNo, HashJoinState::hj_CurTuple, HJ_FILL_INNER, HashJoinState::hj_FirstOuterTupleSlot, HashJoinState::hj_HashTable, HashJoinState::hj_JoinState, HashJoinState::hj_MatchedOuter, HJ_NEED_NEW_OUTER, HashJoinState::hj_OuterNotEmpty, innerPlan, innerPlanState, PlanState::instrument, INVALID_SKEW_BUCKET_NO, HashJoinTableData::nbatch, outerPlan, outerPlanState, palloc0(), and HashState::ps.

Referenced by ExecReScan().

◆ ExecShutdownHashJoin()

void ExecShutdownHashJoin ( HashJoinState node)

Definition at line 1492 of file nodeHashjoin.c.

1493 {
1494  if (node->hj_HashTable)
1495  {
1496  /*
1497  * Detach from shared state before DSM memory goes away. This makes
1498  * sure that we don't have any pointers into DSM memory by the time
1499  * ExecEndHashJoin runs.
1500  */
1503  }
1504 }

References ExecHashTableDetach(), ExecHashTableDetachBatch(), and HashJoinState::hj_HashTable.

Referenced by ExecShutdownNode_walker().