feat: PERCENTILE_CONT function support#45
Merged
MazterQyou merged 1 commit intocubesql-v0.16.0from Jun 4, 2025
Merged
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[] |
Member
Author
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
ovr
approved these changes
Aug 14, 2024
f1a97af to
3a3a7e5
Compare
Pull Request Test Coverage Report for Build 15447291959Details
💛 - Coveralls |
3a3a7e5 to
4670853
Compare
paveltiunov
approved these changes
Sep 29, 2024
|
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. |
030594a to
d37d7dc
Compare
d37d7dc to
1313b2d
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR adds support for
PERCENTILE_CONT(...) WITHIN GROUP (ORDER BY ...)parsing support. Related test is included.