| 965 | } |
| 966 | |
| 967 | void deeplake_table_am_routine::end_index_fetch(IndexFetchTableData* data) |
| 968 | { |
| 969 | DeeplakeIndexFetchData* idx_scan = get_index_fetch_data(data); |
| 970 | idx_scan->~DeeplakeIndexFetchData(); |
| 971 | pfree(idx_scan); |
| 972 | } |
| 973 | |
| 974 | bool deeplake_table_am_routine::index_fetch_tuple(struct IndexFetchTableData* scan, |
| 975 | ItemPointer tid, |
nothing calls this directly
no test coverage detected