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
Documents with big numeric values are presented incorrectly (rendered number is incorrect).
Please see very similar issue here: jqlang/jq#1959
Steps to reproduce:
unsigned_long
PUT /my-test-index-000001 { "mappings": { "properties": { "big_number": { "type": "unsigned_long" } } } }
POST /my-test-index-000001/_doc { "big_number": 1234 }
POST /my-test-index-000001/_doc { "big_number": 1016950844191088640 }
GET /my-test-index-000001/_search { "size": 10 }
Here is a query result:
Incorrect because 1016950844191088640 != 1016950844191088600
1016950844191088640 != 1016950844191088600
GET /my-test-index-000001/_search { "query": { "term": { "big_number": 1016950844191088600 } }, "size": 10 }
4.1 Searching for indexed value → document found
GET /my-test-index-000001/_search { "query": { "term": { "big_number": 1016950844191088640 } }, "size": 10 }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Documents with big numeric values are presented incorrectly (rendered number is incorrect).
Please see very similar issue here: jqlang/jq#1959
Steps to reproduce:
unsigned_long
typeHere is a query result:
Incorrect because
1016950844191088640 != 1016950844191088600
4.1 Searching for rendered value → no results
4.1 Searching for indexed value → document found
The text was updated successfully, but these errors were encountered: