sync all inner code

This commit is contained in:
yanghao
2023-03-07 20:47:24 +08:00
parent b8ee37ad67
commit 46e9fd015b
127 changed files with 1220 additions and 556 deletions

View File

@ -89,7 +89,6 @@ static TupleTableSlot* IndexNext(IndexScanState* node)
// we should change abs_idx_getnext to call IdxScanAm(scan)->idx_getnext and channge .idx_getnext in g_HeapIdxAm to
// IndexGetnextSlot
while (true) {
CHECK_FOR_INTERRUPTS();
IndexScanDesc indexScan = GetIndexScanDesc(scandesc);
@ -163,7 +162,7 @@ static bool IndexRecheck(IndexScanState* node, TupleTableSlot* slot)
* ExecIndexScan(node)
* ----------------------------------------------------------------
*/
TupleTableSlot* ExecIndexScan(PlanState* state)
static TupleTableSlot* ExecIndexScan(PlanState* state)
{
IndexScanState* node = castNode(IndexScanState, state);
/*