| 6 | namespace processor { |
| 7 | |
| 8 | void CrossProduct::initLocalStateInternal(ResultSet* resultSet, ExecutionContext* /*context*/) { |
| 9 | for (auto& pos : info.outVecPos) { |
| 10 | vectorsToScan.push_back(resultSet->getValueVector(pos).get()); |
| 11 | } |
| 12 | localState.init(); |
| 13 | } |
| 14 | |
| 15 | bool CrossProduct::getNextTuplesInternal(ExecutionContext* context) { |
| 16 | // Note: we should NOT morselize right table scanning (i.e. calling sharedState.getMorsel) |
nothing calls this directly
no test coverage detected