| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| if (value instanceof Int64) { | ||
| return value.toNumber(); | ||
| } |
There was a problem hiding this comment.
Actually, these lines has to be kept, but instead of converting Int64 to Number it has to be converted to BigInt
Sorry, something went wrong.
There was a problem hiding this comment.
Updated
Sorry, something went wrong.
BigInts are currently converted to JS Numbers, which can't fit values over 2**53. Fixes databricks#259
| Back | FazBrowse Home | New Git URL |
BigInts are currently converted to JS Numbers, which can't fit values over 2**53.
Fixes #259
This is a breaking change, and I don't expect this to be merged as-is (it might make sense to make this change in behavior opt in for now). But hopefully this can spur discussion.