Skip to content

Commit aae2902

Browse files
authored
Update bigframes/core/compile/sqlglot/scalar_compiler.py
1 parent 8f67cb2 commit aae2902

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bigframes/core/compile/sqlglot/scalar_compiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ def isnanornull(arg: TypedExpr) -> sge.Expression:
192192
def isfinite(arg: TypedExpr) -> sge.Expression:
193193
return sge.Not(
194194
this=sge.Or(
195-
this=sge.Is(this=expr.expr, expression=sge.Null()),
195+
this=sge.Is(this=arg.expr, expression=sge.Null()),
196196
right=sge.Or(
197197
this=sge.IsInf(this=arg.expr),
198198
right=sge.IsNan(this=arg.expr),

0 commit comments

Comments
 (0)