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
Adds exact percentile_cont aggregate function as the counterpart
to the existing approx_percentile_cont function.
This implementation:
- Calculates exact percentiles by storing all values in memory
- Supports WITHIN GROUP (ORDER BY ...) syntax
- Uses linear interpolation between values for continuous percentiles
- Handles all numeric types (integers, floats, decimals)
- Supports DISTINCT mode
- Includes GroupsAccumulator for efficient grouped aggregation
- Comprehensive test coverage
Closes#6714
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>
0 commit comments