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
Another odd example of this is +INF and -INF. Even if allowNonNumericNumbers is disabled +INF and -INF are valid floats and are normalized to "Infinity" and "-Infinity" respectively. And the quotes come out in the string itself. This is also true for unquoted Infinity, -Infinity, and NaN
This functionality was put under a config spark.sql.json.enableExactStringParsing with it on by default.
It appears to work for scan, but not for get_json_object. It also does not remove the white space any longer or normalize single quotes, which will make things a lot more interesting to try and make this work.
Describe the bug
This is almost identical to #10218, but is for from_json and reading json lines formatted files.
Numbers like 1.00000 and -0 are not normalized to match what Apache Spark would do.
The text was updated successfully, but these errors were encountered: