Skip to content

Commit

Permalink
fix(sqlglot): stop using removed singletons for true, false, null
Browse files Browse the repository at this point in the history
  • Loading branch information
gforsyth authored and cpcloud committed Jan 30, 2024
1 parent 3c2c29c commit 4fb0aad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ibis/backends/base/sqlglot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ def interval(value, *, unit):

C = ColGen()
F = FuncGen()
NULL = sg.exp.NULL
FALSE = sg.exp.FALSE
TRUE = sg.exp.TRUE
NULL = sg.exp.Null()
FALSE = sg.exp.false()
TRUE = sg.exp.true()
STAR = sg.exp.Star()


Expand Down

0 comments on commit 4fb0aad

Please sign in to comment.