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

Aggregate function errors #1347

Open
brynrhodes opened this issue Mar 28, 2024 · 0 comments
Open

Aggregate function errors #1347

brynrhodes opened this issue Mar 28, 2024 · 0 comments

Comments

@brynrhodes
Copy link
Member

The following functions return incorrect results:

define "AllTrueIsTrueWhenNull": AllTrue(null) // Should be true, returns null
define "AnyTrueIsFalseWhenNull": AnyTrue(null) // Should be false, returns null
define "StdDevIsNull": StdDev({ null as Quantity, null as Quantity, null as Quantity }) // Gives NullPointerException, should be null
define "PopulationStdDevIsNull": PopulationStdDev({ null as Quantity, null as Quantity, null as Quantity }) // Gives NullPointerException, should be null

Note that these are directly from the spec, and are likely in the cql-tests, so the fix here should be coordinated with a passing test in the tests suite.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant