dmigo commented on issue #3188: [sqllab] query  result  is  not accurate
URL: 
https://github.com/apache/incubator-superset/issues/3188#issuecomment-319006730
 
 
   [here](https://www.w3schools.com/js/js_numbers.asp) it states that any 
number longer than 15 digits is going to be imprecise in javascript.
   You can try in console:
   
       let b = 123456789012345
       b // 123456789012345
       b = 12345678901234567
       b // 12345678901234568
   
   1234567890123456**7** is "corrected" to 1234567890123456**8**
 
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to