timsaucer opened a new issue, #1454: URL: https://github.com/apache/datafusion-python/issues/1454
## Summary A few aggregate functions from upstream DataFusion are not yet exposed in datafusion-python. ## Missing Functions - [ ] `grouping` — returns an integer indicator for which grouping set a row belongs to (used with `GROUPING SETS`, `CUBE`, `ROLLUP`) - [ ] `percentile_cont` / `quantile_cont` — computes a percentile value using continuous interpolation - [ ] `var_population` — alias for `var_pop` ## Upstream Reference - https://datafusion.apache.org/user-guide/sql/aggregate_functions.html ## Implementation - Rust bindings: `crates/core/src/functions.rs` - Python wrappers: `python/datafusion/functions.py` > **Note:** This gap analysis was performed using an AI agent comparing upstream DataFusion v53 documentation against the current datafusion-python codebase. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
