| 158 | } |
| 159 | |
| 160 | void ScanNodeTable::initGlobalStateInternal(ExecutionContext* context) { |
| 161 | DASSERT(sharedStates.size() == tableInfos.size()); |
| 162 | for (auto i = 0u; i < tableInfos.size(); i++) { |
| 163 | sharedStates[i]->initialize(transaction::Transaction::Get(*context->clientContext), |
| 164 | tableInfos[i].table->ptrCast<NodeTable>(), *progressSharedState); |
| 165 | } |
| 166 | } |
| 167 | |
| 168 | bool ScanNodeTable::getNextTuplesInternal(ExecutionContext* context) { |
| 169 | const auto transaction = transaction::Transaction::Get(*context->clientContext); |
nothing calls this directly
no test coverage detected