You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If to align with other database, then will introduce a breaking change. cc @dai-chen@penghuo
LantaoJin
changed the title
[BUG] Sum multiple null value should return 0 instead of null
[BUG] Sum multiple null values should return null instead of 0Mar 11, 2025
The root cause is the behavior of return 0 is from OpenSearch (agg pushdown applied). When we disable agg pushdown, the test case above will return null.
What is the bug?
In most databases. Below query will return
null
Return
But in PPL v2, it return
0
. For exampleCurrent the v3 (Calcite) will return
null
as well. Should we change this behaviour align with other databases?The text was updated successfully, but these errors were encountered: