| 129 | } |
| 130 | |
| 131 | void ScanNodeTableInfo::initScanState(TableScanState& scanState, |
| 132 | const std::vector<ValueVector*>& outVectors, main::ClientContext* context) { |
| 133 | auto transaction = transaction::Transaction::Get(*context); |
| 134 | scanState.setToTable(transaction, table, columnIDs, copyVector(columnPredicates)); |
| 135 | initScanStateVectors(scanState, outVectors, MemoryManager::Get(*context)); |
| 136 | } |
| 137 | |
| 138 | void ScanNodeTable::initLocalStateInternal(ResultSet* resultSet, ExecutionContext* context) { |
| 139 | ScanTable::initLocalStateInternal(resultSet, context); |
no test coverage detected