(&mut self, node: Expr<Raw>)
| 2278 | } |
| 2279 | |
| 2280 | fn fold_expr(&mut self, node: Expr<Raw>) -> Expr<Aug> { |
| 2281 | // Exprs can be recursive, so need the ability to grow the stack. |
| 2282 | mz_ore::stack::maybe_grow(|| mz_sql_parser::ast::fold::fold_expr(self, node)) |
| 2283 | } |
| 2284 | } |
| 2285 | |
| 2286 | /// Resolves names in an AST node using the provided catalog. |
no test coverage detected