-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
integer value 99999999999999999999999 is taken as 10,000,000,000,000,000,000,000 #72
Comments
These are great bug reports! I really appreciate it, I'm digging in. A couple of requests that will help me fix these more quickly.
next cell
and
next cell
There are three possible issues with each one of these cases, autoTyping (python widget code), the formatter the widget code hints at in
|
Check out this issue for the end state of how I want to be able to handle this |
Can you put the actual code in text to reproduce?Can you elaborate? |
the core issue is that Javascript treats really large ints as floats, and does rounding. Look into using and hinting that BigInt is required from table_hints |
Converting to string is one option: |
not just 9999999999999999999999999 even other number are taken differently. {'schema': {'fields': [{'name': 'index'}, {'name': 'inf'}]}, For smaller digits the is_numeric is taken as true and for higher digits is_numeric is taken as false. |
The text was updated successfully, but these errors were encountered: