Skip to content
New issue

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

[BUG] percentile returns wrong value in V2 #3495

Open
Tracked by #3487
xinyual opened this issue Mar 31, 2025 · 1 comment
Open
Tracked by #3487

[BUG] percentile returns wrong value in V2 #3495

xinyual opened this issue Mar 31, 2025 · 1 comment
Labels
breaking bug Something isn't working

Comments

@xinyual
Copy link
Contributor

xinyual commented Mar 31, 2025

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?

  • OS: [e.g. iOS]
  • Version [e.g. 22]
  • Plugins

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.

@xinyual xinyual added bug Something isn't working untriaged labels Mar 31, 2025
@LantaoJin LantaoJin changed the title [BUG] percentile returns wrong value [BUG] percentile returns wrong value in V2 Mar 31, 2025
@LantaoJin
Copy link
Member

LantaoJin commented Mar 31, 2025

Thanks, this was fixed in v3. linked to #3487

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
breaking bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants