| 85 | int64_t num_rescans = 0; |
| 86 | |
| 87 | void reset() |
| 88 | { |
| 89 | tid_range_scan_active = false; |
| 90 | min_tid = 0; |
| 91 | max_tid = 0; |
| 92 | current_tid = 0; |
| 93 | bitmap_scan_active = false; |
| 94 | bitmap_row_numbers.clear(); |
| 95 | current_tbmres = nullptr; |
| 96 | current_offset = InvalidOffsetNumber; |
| 97 | sample_scan_active = false; |
| 98 | current_sample_scanstate = nullptr; |
| 99 | analyze_block_returned = false; |
| 100 | } |
| 101 | |
| 102 | DeeplakeScanData(pg::table_scan&& state) |
| 103 | : postgres_scan{} |
no test coverage detected