| 20 | } |
| 21 | |
| 22 | void NodeInsertInfo::updateNodeID(nodeID_t nodeID) const { |
| 23 | DASSERT(nodeIDVector->state->getSelVector().getSelSize() == 1); |
| 24 | auto pos = nodeIDVector->state->getSelVector()[0]; |
| 25 | nodeIDVector->setNull(pos, false); |
| 26 | nodeIDVector->setValue<nodeID_t>(pos, nodeID); |
| 27 | } |
| 28 | |
| 29 | nodeID_t NodeInsertInfo::getNodeID() const { |
| 30 | auto& nodeIDSelVector = nodeIDVector->state->getSelVector(); |
no test coverage detected