File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
bigframes/core/compile/sqlglot/expressions Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 1717_ZERO = sge .Cast (this = sge .convert (0 ), to = "INT64" )
1818_NAN = sge .Cast (this = sge .convert ("NaN" ), to = "FLOAT64" )
1919_INF = sge .Cast (this = sge .convert ("Infinity" ), to = "FLOAT64" )
20+ _NEG_INF = sge .Cast (this = sge .convert ("-Infinity" ), to = "FLOAT64" )
2021
2122# Approx Highest number you can pass in to EXP function and get a valid FLOAT64 result
2223# FLOAT64 has 11 exponent bits, so max values is about 2**(2**10)
Original file line number Diff line number Diff line change 2222import sqlglot .expressions as sge
2323
2424from bigframes import operations as ops
25- import bigframes .core .compile .sqlglot .expressions .constants as constants
2625from bigframes .core .compile .constants import UNIT_TO_US_CONVERSION_FACTORS
26+ import bigframes .core .compile .sqlglot .expressions .constants as constants
2727from bigframes .core .compile .sqlglot .expressions .op_registration import OpRegistration
2828from bigframes .core .compile .sqlglot .expressions .typed_expr import TypedExpr
2929
You can’t perform that action at this time.
0 commit comments