Correct the name of functions

This commit is contained in:
zhaosen
2024-07-26 13:58:31 +08:00
parent 4abafc6b22
commit 966c5103c2
2 changed files with 2 additions and 2 deletions

View File

@ -927,7 +927,7 @@ void UHeapamScanMarkpos(TableScanDesc sscan)
void UHeapamScanInitParallelSeqscan(TableScanDesc sscan, int32 dop, ScanDirection dir)
{
return UeapInitParallelSeqscan(sscan, dop, dir);
return UHeapInitParallelSeqscan(sscan, dop, dir);
}
void UHeapamScanEndscan(TableScanDesc sscan)

View File

@ -1206,7 +1206,7 @@ void UHeapRestRpos(TableScanDesc sscan)
}
}
void UeapInitParallelSeqscan(TableScanDesc sscan, int32 dop, ScanDirection dir)
void UHeapInitParallelSeqscan(TableScanDesc sscan, int32 dop, ScanDirection dir)
{
HeapScanDesc scan = (HeapScanDesc) sscan;