Parallel bitmap scan.

This commit is contained in:
TotaJ
2020-12-07 11:46:41 +08:00
parent 50e58ce57d
commit 8f0c2915f8
35 changed files with 1895 additions and 225 deletions

View File

@ -1597,7 +1597,6 @@ void ExecHashJoinInitializeDSM(HashJoinState* state, ParallelContext* pcxt, int
/* Initialize the shared state in the hash node. */
hashNode = (HashState*)innerPlanState(state);
hashNode->parallel_state = pstate;
t_thrd.bgworker_cxt.memCxt = cxt->memCtx;
}
/* ----------------------------------------------------------------
@ -1669,5 +1668,4 @@ void ExecHashJoinInitializeWorker(HashJoinState* state, void* pwcxt)
hashNode = (HashState*)innerPlanState(state);
hashNode->parallel_state = pstate;
state->isParallel = true;
t_thrd.bgworker_cxt.memCxt = cxt->memCtx;
}