mirror of
https://github.com/apache/superset.git
synced 2026-05-28 19:25:20 +00:00
sqlglot 30 changed Parser.expression() to accept a pre-constructed expression instance instead of a class + keyword arguments. Old: self.expression(exp.Not, this=..., expressions=...) New: self.expression(exp.Not(this=..., expressions=...)) Update all four call sites in firebolt.py: UNARY_PARSERS lambda, _negate_range, _parse_join, and _parse_unnest. Co-Authored-By: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>