| 107 | } |
| 108 | |
| 109 | void RelTableScanState::initStateForCommitted(const Transaction* transaction) { |
| 110 | source = TableScanSource::COMMITTED; |
| 111 | currBoundNodeIdx = 0; |
| 112 | nodeGroup->initializeScanState(transaction, *this); |
| 113 | } |
| 114 | |
| 115 | void RelTableScanState::initStateForUncommitted() { |
| 116 | DASSERT(localTableScanState); |
nothing calls this directly
no test coverage detected