-
Notifications
You must be signed in to change notification settings - Fork 1
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
feat: PERCENTILE_CONT
function support
#45
base: cubesql-v0.16.0
Are you sure you want to change the base?
Conversation
Do we need to support array versions of the percentile_cont ( fractions double precision[] ) WITHIN GROUP ( ORDER BY double precision ) → double precision[]
percentile_cont ( fractions double precision[] ) WITHIN GROUP ( ORDER BY interval ) → interval[] |
Unlikely. We're only supporting parsing and planning of this, presumably to push it down, and many data warehouses don't seem to support that. |
39322c8
to
f1a97af
Compare
f1a97af
to
3a3a7e5
Compare
Pull Request Test Coverage Report for Build 10704099334Details
💛 - Coveralls |
3a3a7e5
to
4670853
Compare
Thank you for your contribution. Unfortunately, this pull request is stale because it has been open 60 days with no activity. Please remove the stale label or comment or this will be closed in 7 days. |
This PR adds support for
PERCENTILE_CONT(...) WITHIN GROUP (ORDER BY ...)
parsing support. Related test is included.