Plans a `make_map` expression, such as `make_map(key1, value1, key2, value2, ...)` Returns original expression arguments if not possible
(&self, args: Vec<Expr>)
| 239 | /// |
| 240 | /// Returns original expression arguments if not possible |
| 241 | fn plan_make_map(&self, args: Vec<Expr>) -> Result<PlannerResult<Vec<Expr>>> { |
| 242 | Ok(PlannerResult::Original(args)) |
| 243 | } |
| 244 | |
| 245 | /// Plans compound identifier such as `db.schema.table` for non-empty nested names |
| 246 | /// |
no outgoing calls
no test coverage detected