| 84 | } |
| 85 | |
| 86 | static void writeSrcDstNodeIDs(nodeID_t fromID, nodeID_t toID, ValueVector* directionDataVector, |
| 87 | ValueVector* srcNodeIDsDataVector, ValueVector* dstNodeIDsDataVector, sel_t pos, bool flag) { |
| 88 | if (isCorrectOrder(directionDataVector, pos, flag)) { |
| 89 | srcNodeIDsDataVector->setValue(pos, fromID); |
| 90 | dstNodeIDsDataVector->setValue(pos, toID); |
| 91 | } else { |
| 92 | srcNodeIDsDataVector->setValue(pos, toID); |
| 93 | dstNodeIDsDataVector->setValue(pos, fromID); |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | bool PathPropertyProbe::getNextTuplesInternal(ExecutionContext* context) { |
| 98 | if (!children[0]->getNextTuple(context)) { |
no test coverage detected