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
What is the bug? When we use percentile aggregation but no input, it will return 0 instead of null.
How can one reproduce the bug? Create a index with two items
POST /demo/_doc { "demo1": 1, "demo2": 1 }
POST /demo/_doc { "demo1": null, "demo2": null }
Then call calcite
POST /_plugins/_ppl/ { "query": "source=demo | stats percentile(demo1, 50) by demo2" }
It returns
{ "schema": [ { "name": "percentile(demo1, 50)", "type": "long" }, { "name": "demo2", "type": "long" } ], "datarows": [ [ 0, null ], [ 1, 1 ] ], "total": 2, "size": 2 }
Here we return 0 for the bin when demo2 is null. But actually no any input here. So we should return null. 0 has quantitative meanings .
What is the expected behavior? Return null
What is your host/environment?
Do you have any screenshots? If applicable, add screenshots to help explain your problem.
Do you have any additional context? Add any other context about the problem.
The text was updated successfully, but these errors were encountered:
Thanks, this was fixed in v3. linked to #3487
Sorry, something went wrong.
No branches or pull requests
What is the bug?
When we use percentile aggregation but no input, it will return 0 instead of null.
How can one reproduce the bug?
Create a index with two items
Then call calcite
It returns
Here we return 0 for the bin when demo2 is null. But actually no any input here. So we should return null. 0 has quantitative meanings .
What is the expected behavior?
Return null
What is your host/environment?
Do you have any screenshots?
If applicable, add screenshots to help explain your problem.
Do you have any additional context?
Add any other context about the problem.
The text was updated successfully, but these errors were encountered: