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
WHERE
How can one reproduce the bug? Steps to reproduce the behavior:
curl -s -XPOST localhost:9200/beer.stackexchange/_bulk -H 'Content-Type: application/x-ndjson' --data-binary @integ-test/src/test/resources/beer.stackexchange.json
select Id, length(Body) as len from beer.stackexchange order by len desc LIMIT 5;
The result:
fetched rows / total rows = 5/5 +------+-------+ | Id | len | |------+-------| | 580 | 2037 | | 105 | 1263 | | 351 | 1241 | | 590 | 1197 | | 235 | 1137 | +------+-------+
select Id, length(Body) as len, Body from beer.stackexchange where length(Body) > 500;
What is the expected behavior? Result set should contain lines where Body has a long enough value.
Body
Actual result Incorrect (empty result set) calculation results returned.
fetched rows / total rows = 0/0 +------+-------+--------+ | Id | len | Body | |------+-------+--------| +------+-------+--------+
What is your host/environment? Tested on 7cbb121cb3ad144a5e6d5b9acb9ae8e6da01688e (current main/HEAD). OpenSearch 2.0
7cbb121cb3ad144a5e6d5b9acb9ae8e6da01688e
main/HEAD
Might be related to #657.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
How can one reproduce the bug?
Steps to reproduce the behavior:
curl -s -XPOST localhost:9200/beer.stackexchange/_bulk -H 'Content-Type: application/x-ndjson' --data-binary @integ-test/src/test/resources/beer.stackexchange.json
The result:
WHERE
clause tooWhat is the expected behavior?
Result set should contain lines where
Body
has a long enough value.Actual result
Incorrect (empty result set) calculation results returned.
What is your host/environment?
Tested on
7cbb121cb3ad144a5e6d5b9acb9ae8e6da01688e
(currentmain/HEAD
).OpenSearch 2.0
Might be related to #657.
The text was updated successfully, but these errors were encountered: