Factory method for iterative _==_ and _!=_ Execution step
| 273 | |
| 274 | // Factory method for iterative _==_ and _!=_ Execution step |
| 275 | std::unique_ptr<ExpressionStep> CreateEqualityStep(bool negation, |
| 276 | int64_t expr_id) { |
| 277 | return std::make_unique<IterativeEqualityStep>(negation, expr_id); |
| 278 | } |
| 279 | |
| 280 | // Factory method for recursive @in Execution step |
| 281 | std::unique_ptr<DirectExpressionStep> CreateDirectInStep( |
no outgoing calls