You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixes a non-deterministic failing test in bigquery.
This has something to do with rounding of floats (and different
behavior between Python 2 and Python 3). For example, `.123` gets
"rounded down" when expressed as floating point:
>>> (0.123).hex()
'0x1.f7ced916872b0p-4'
>>> # Add 4 for exponent and multiply .123 by 1000
>>> 2**(52 + 4) * 123
8863084066665136128
>>> # Account for the factor of 1000 we've multiplied .123 by
>>> (0x1f7ced916872b0) * 1000
8863084066665136000
0 commit comments