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
BUG19225481: Fix floating point inaccuracy with Python v2
Fix Connector/Python truncating digits from float values with
Python v2. This was not happening with Python v3 since str()
function in v3 does not truncate digits while converting
floats to string. This was resolved by using repr() instead of
str() for floating point values while converting them to string.
A unit test has been added for BUG19225481.
0 commit comments