| 90 | } |
| 91 | |
| 92 | static OpResult AllNodeScanReset(OpBase *op) { |
| 93 | AllNodeScan *allNodeScan = (AllNodeScan *)op; |
| 94 | if(allNodeScan->iter) DataBlockIterator_Reset(allNodeScan->iter); |
| 95 | return OP_OK; |
| 96 | } |
| 97 | |
| 98 | static inline OpBase *AllNodeScanClone(const ExecutionPlan *plan, const OpBase *opBase) { |
| 99 | ASSERT(opBase->type == OPType_ALL_NODE_SCAN); |
nothing calls this directly
no test coverage detected