This is an automated email from the ASF dual-hosted git repository.
jiayuliu pushed a change to branch upgrade-to-support-311
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion-python.git
from 270bb89 upgrade
add 501acff Allow for multiple input files per table instead of a single
file (#519)
add c6a7af5 Add support for window function bindings (#521)
add d7fcea2 small clippy fix (#524)
add fc3c24b Prepare 32.0.0 Release (#525)
add aaaeeb1 First pass at getting architectured builds working (#350)
add da6c183 Remove libprotobuf dep (#527)
add b734332 Merge branch 'main' into upgrade-to-support-311
No new revisions were added by this update.
Summary of changes:
.github/workflows/conda.yml | 92 ++++++++---
CHANGELOG.md | 38 ++++-
Cargo.lock | 229 ++++++++++++-------------
Cargo.toml | 3 +-
docs/build.sh => conda/recipes/bld.bat | 14 +-
conda/recipes/build.sh | 84 ++++++++++
conda/recipes/meta.yaml | 31 +++-
datafusion/__init__.py | 4 +-
datafusion/input/location.py | 10 +-
datafusion/tests/test_input.py | 2 +-
pyproject.toml | 1 +
src/common/data_type.rs | 18 ++
src/common/schema.rs | 16 +-
src/expr.rs | 13 ++
src/expr/window.rs | 294 +++++++++++++++++++++++++++++++++
src/functions.rs | 4 +-
src/lib.rs | 15 +-
src/sql/logical.rs | 8 +-
src/window_frame.rs | 110 ------------
19 files changed, 700 insertions(+), 286 deletions(-)
copy docs/build.sh => conda/recipes/bld.bat (72%)
mode change 100755 => 100644
create mode 100644 conda/recipes/build.sh
create mode 100644 src/expr/window.rs
delete mode 100644 src/window_frame.rs