| 46 | } |
| 47 | |
| 48 | static inline OpBase *OptionalClone(const ExecutionPlan *plan, const OpBase *opBase) { |
| 49 | Optional *op = (Optional *)opBase; |
| 50 | OpBase *clone = NewOptionalOp(plan); |
| 51 | return clone; |
| 52 | } |
nothing calls this directly
no test coverage detected