| 765 | } |
| 766 | |
| 767 | void deeplake_table_am_routine::scan_end(TableScanDesc scan) |
| 768 | { |
| 769 | DeeplakeScanData* extended_scan = get_scan_data(scan); |
| 770 | extended_scan->~DeeplakeScanData(); |
| 771 | pfree(extended_scan); |
| 772 | } |
| 773 | |
| 774 | bool deeplake_table_am_routine::scan_getnextslot(TableScanDesc scan, ScanDirection direction, TupleTableSlot* slot) |
| 775 | { |
nothing calls this directly
no test coverage detected