| 260 | } |
| 261 | |
| 262 | std::unique_ptr<ExpressionStep> CreateCreateStructStep( |
| 263 | std::string name, std::vector<std::string> field_keys, |
| 264 | absl::flat_hash_set<int32_t> optional_indices, int64_t expr_id) { |
| 265 | // MakeOptionalIndicesSet(create_struct_expr) |
| 266 | return std::make_unique<CreateStructStepForStruct>( |
| 267 | expr_id, std::move(name), std::move(field_keys), |
| 268 | std::move(optional_indices)); |
| 269 | } |
| 270 | } // namespace google::api::expr::runtime |
no outgoing calls