| 53 | } |
| 54 | |
| 55 | void SelectPlanNode::Codegen(FragmentState* state) { |
| 56 | DCHECK(state->ShouldCodegen()); |
| 57 | PlanNode::Codegen(state); |
| 58 | if (IsNodeCodegenDisabled()) return; |
| 59 | AddCodegenStatus(CodegenCopyRows(state)); |
| 60 | } |
| 61 | |
| 62 | Status SelectPlanNode::CodegenCopyRows(FragmentState* state) { |
| 63 | LlvmCodeGen* codegen = state->codegen(); |
nothing calls this directly
no test coverage detected