Factory method for "Or" Execution step
| 458 | |
| 459 | // Factory method for "Or" Execution step |
| 460 | absl::StatusOr<std::unique_ptr<ExpressionStep>> CreateOrStep(int64_t expr_id) { |
| 461 | return std::make_unique<LogicalOpStep>(OpType::kOr, expr_id); |
| 462 | } |
| 463 | |
| 464 | // Factory method for recursive logical not "!" Execution step |
| 465 | std::unique_ptr<DirectExpressionStep> CreateDirectNotStep( |