We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Steps to reproduce: List the minimal actions needed to reproduce the behavior.
Expected behavior: The data explorer should display 18446744073709551615
Actual behavior: It displays 18446744073709552000
Environment info:
uname -srm
influxd version
Config: Copy any non-default config values here or attach the full config as a gist or file.
JavaScript can support unsigned 64 bit integers with BigInt. Without BigInt the result would be:
2**64-1 -> 18446744073709552000
With BigInt it would be:
2n**64n-1n -> 18446744073709551615n
Perhaps that's the culprit. If queried using the influxdb-cli tool yields the correct values.
Edit: added 'u' to the value in step one
The text was updated successfully, but these errors were encountered:
Any update on this?
Sorry, something went wrong.
No branches or pull requests
Steps to reproduce:
List the minimal actions needed to reproduce the behavior.
Expected behavior:
The data explorer should display 18446744073709551615
Actual behavior:
It displays 18446744073709552000
Environment info:
uname -srm
and copy the output hereinfluxd version
and copy the output hereConfig:
Copy any non-default config values here or attach the full config as a gist or file.
Strong Hypothesis
JavaScript can support unsigned 64 bit integers with BigInt. Without BigInt the result would be:
With BigInt it would be:
Perhaps that's the culprit. If queried using the influxdb-cli tool yields the correct values.
Edit: added 'u' to the value in step one
The text was updated successfully, but these errors were encountered: