| 157 | } |
| 158 | |
| 159 | std::unique_ptr<DirectExpressionStep> CreateDirectSlotIdentStep( |
| 160 | absl::string_view identifier, size_t slot_index, int64_t expr_id) { |
| 161 | return std::make_unique<DirectSlotStep>(identifier, slot_index, expr_id); |
| 162 | } |
| 163 | |
| 164 | absl::StatusOr<std::unique_ptr<ExpressionStep>> CreateIdentStep( |
| 165 | const absl::string_view name, int64_t expr_id) { |
no outgoing calls