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 08d3486 commit 94b2ce9Copy full SHA for 94b2ce9
bigframes/core/compile/sqlglot/expressions/constants.py
@@ -17,6 +17,7 @@
17
_ZERO = sge.Cast(this=sge.convert(0), to="INT64")
18
_NAN = sge.Cast(this=sge.convert("NaN"), to="FLOAT64")
19
_INF = sge.Cast(this=sge.convert("Infinity"), to="FLOAT64")
20
+_NEG_INF = sge.Cast(this=sge.convert("-Infinity"), to="FLOAT64")
21
22
# Approx Highest number you can pass in to EXP function and get a valid FLOAT64 result
23
# FLOAT64 has 11 exponent bits, so max values is about 2**(2**10)
0 commit comments