vogievetsky commented on issue #9699: URL: https://github.com/apache/druid/issues/9699#issuecomment-643514855
The issue here is that in JS the only numbers are doubles and doubles can not represent a number that high.  The web console parses the JSON from the explain plan and that automatically parses the numbers into JS numbers. Is it possible for Druid's explain plan to return numbers that are not JS safe as strings? https://stackoverflow.com/questions/47188449/json-max-int-number/47188576 Doing so would be more inline with the JSON spec: https://tools.ietf.org/html/rfc7159#section-6 ``` Note that when such software is used, numbers that are integers and are in the range [-(2**53)+1, (2**53)-1] are interoperable in the sense that implementations will agree exactly on their numeric values. ``` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
