| 188 | } |
| 189 | |
| 190 | void PhysicalOperator::initGlobalState(ExecutionContext* context) { |
| 191 | if (!isSource()) { |
| 192 | children[0]->initGlobalState(context); |
| 193 | } |
| 194 | initGlobalStateInternal(context); |
| 195 | } |
| 196 | |
| 197 | void PhysicalOperator::initLocalState(ResultSet* resultSet_, ExecutionContext* context) { |
| 198 | if (!isSource()) { |