TupleTableSlots数据结构及相关函数调用优化
This commit is contained in:
@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user