Skip to content

Commit 9414971

Browse files
authored
Update bigframes/core/compile/sqlglot/expressions/numeric_ops.py
1 parent 2aa7f25 commit 9414971

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bigframes/core/compile/sqlglot/expressions/numeric_ops.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ def _(expr: TypedExpr) -> sge.Expression:
207207
return sge.Case(
208208
ifs=[
209209
sge.If(
210-
this=expr.expr <= sge.convert(0),
210+
this=expr.expr < sge.convert(0),
211211
true=constants._NAN,
212212
)
213213
],

0 commit comments

Comments
 (0)