File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
bigframes/core/compile/sqlglot Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 2121from bigframes .core .compile .sqlglot .expressions .typed_expr import TypedExpr
2222import bigframes .core .compile .sqlglot .sqlglot_ir as ir
2323import bigframes .core .expression as ex
24- import bigframes .operations as ops
2524from bigframes .operations import numeric_ops
25+ import bigframes .operations as ops
2626
2727
2828class ScalarOpCompiler :
@@ -190,4 +190,6 @@ def isnan(arg: TypedExpr) -> sge.Expression:
190190
191191@scalar_op_compiler .register_unary_op (numeric_ops .isfinite_op )
192192def isfinite (arg : TypedExpr ) -> sge .Expression :
193- return sge .Not (this = sge .Or (this = sge .IsInf (this = arg .expr ), right = sge .IsNan (this = arg .expr )))
193+ return sge .Not (
194+ this = sge .Or (this = sge .IsInf (this = arg .expr ), right = sge .IsNan (this = arg .expr ))
195+ )
You can’t perform that action at this time.
0 commit comments