Skip to content

Commit 94b2ce9

Browse files
committed
update comments
1 parent 08d3486 commit 94b2ce9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

bigframes/core/compile/sqlglot/expressions/constants.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
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)

0 commit comments

Comments
 (0)