TupleTableSlots数据结构及相关函数调用优化

This commit is contained in:
wanghao19920907
2023-02-21 20:29:34 -08:00
parent ddccb0aea5
commit fd1f338af5
48 changed files with 390 additions and 335 deletions

View File

@ -807,8 +807,8 @@ BitmapHeapScanState* ExecInitBitmapHeapScan(BitmapHeapScan* node, EState* estate
/*
* tuple table initialization
*/
ExecInitResultTupleSlot(estate, &scanstate->ss.ps, currentRelation->rd_tam_type);
ExecInitScanTupleSlot(estate, &scanstate->ss, currentRelation->rd_tam_type);
ExecInitResultTupleSlot(estate, &scanstate->ss.ps, GetTableAmRoutine(currentRelation->rd_tam_type));
ExecInitScanTupleSlot(estate, &scanstate->ss, GetTableAmRoutine(currentRelation->rd_tam_type));
InitBitmapHeapScanNextMtd(scanstate);