| 100 | } |
| 101 | |
| 102 | static OpBase *ProjectClone(const ExecutionPlan *plan, const OpBase *opBase) { |
| 103 | ASSERT(opBase->type == OPType_PROJECT); |
| 104 | OpProject *op = (OpProject *)opBase; |
| 105 | AR_ExpNode **exps; |
| 106 | array_clone_with_cb(exps, op->exps, AR_EXP_Clone); |
| 107 | return NewProjectOp(plan, exps); |
| 108 | } |
| 109 | |
| 110 | void ProjectBindToPlan |
| 111 | ( |
nothing calls this directly
no test coverage detected