| 264 | } |
| 265 | |
| 266 | void PlanNode::Codegen(FragmentState* state) { |
| 267 | DCHECK(state->ShouldCodegen()); |
| 268 | DCHECK(state->codegen() != nullptr); |
| 269 | for (PlanNode* child : children_) { |
| 270 | child->Codegen(state); |
| 271 | } |
| 272 | } |
| 273 | |
| 274 | const string ExecNode::ROW_THROUGHPUT_COUNTER = "RowsReturnedRate"; |
| 275 |
nothing calls this directly
no test coverage detected