| 51 | } |
| 52 | |
| 53 | void ArrowNodeTable::initializeScanCoordination(const transaction::Transaction* transaction) { |
| 54 | auto arrowScanSharedState = |
| 55 | static_cast<ArrowNodeTableScanSharedState*>(tableScanSharedState.get()); |
| 56 | auto batchSizes = getBatchSizes(transaction); |
| 57 | arrowScanSharedState->reset(batchSizes); |
| 58 | } |
| 59 | |
| 60 | void ArrowNodeTable::initScanState([[maybe_unused]] transaction::Transaction* transaction, |
| 61 | TableScanState& scanState, [[maybe_unused]] bool resetCachedBoundNodeSelVec) const { |
no test coverage detected