jgoday opened a new pull request #819:
URL: https://github.com/apache/arrow-datafusion/pull/819
# Which issue does this PR close?
Closes #572.
# Rationale for this change
Allows to use window functions from python bindings (inside a select
expression).
```python
df = df.select(
f.col("a"),
f.alias(f.window("lead", [f.col("b")], order_by=[f.order_by(f.col("b"))]),
"a_next"),
)
```
# What changes are included in this PR?
# Are there any user-facing changes?
Changes to python crate, new exported functions (sort_by, alias and window).
<!--
If there are any breaking changes to public APIs, please add the `api
change` label.
-->
--
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]