kirill-stepanishin commented on PR #3340: URL: https://github.com/apache/tinkerpop/pull/3340#issuecomment-4128804465
> Question: if a user inputs a number that is larger than the max long, it isn't suffixed to be a BigInteger? Correct. A user can't even input such a value accurately as a number in the first place, since JS number only has 53 bits of precision vs 63 bits for Java Long. Any integer-looking number beyond safe range has already lost precision, so it gets D. For true BigInteger, users need to use JS bigint type. -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
