We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f67cb2 commit aae2902Copy full SHA for aae2902
bigframes/core/compile/sqlglot/scalar_compiler.py
@@ -192,7 +192,7 @@ def isnanornull(arg: TypedExpr) -> sge.Expression:
192
def isfinite(arg: TypedExpr) -> sge.Expression:
193
return sge.Not(
194
this=sge.Or(
195
- this=sge.Is(this=expr.expr, expression=sge.Null()),
+ this=sge.Is(this=arg.expr, expression=sge.Null()),
196
right=sge.Or(
197
this=sge.IsInf(this=arg.expr),
198
right=sge.IsNan(this=arg.expr),
0 commit comments