| 79 | } |
| 80 | |
| 81 | void ScanRelTableInfo::initScanState(TableScanState& scanState, |
| 82 | const std::vector<ValueVector*>& outVectors, main::ClientContext* context) { |
| 83 | auto transaction = transaction::Transaction::Get(*context); |
| 84 | scanState.setToTable(transaction, table, columnIDs, copyVector(columnPredicates), direction); |
| 85 | initScanStateVectors(scanState, outVectors, MemoryManager::Get(*context)); |
| 86 | } |
| 87 | |
| 88 | void ScanRelTable::initLocalStateInternal(ResultSet* resultSet, ExecutionContext* context) { |
| 89 | ScanTable::initLocalStateInternal(resultSet, context); |
no test coverage detected