You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ag...@apache.org on 2020/09/25 18:25:56 UTC

[arrow] branch master updated (3fc37f4 -> 5f8a792)

This is an automated email from the ASF dual-hosted git repository.

agrove pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git.


    from 3fc37f4  ARROW-9869: [R] Implement full S3FileSystem/S3Options constructor
     add 5f8a792  ARROW-9752: [Rust] [DataFusion] Add support for User-Defined Aggregate Functions.

No new revisions were added by this update.

Summary of changes:
 rust/datafusion/README.md                        |   3 +-
 rust/datafusion/examples/simple_udaf.rs          | 168 +++++++++++++++++++++++
 rust/datafusion/src/execution/context.rs         |  88 +++++++++++-
 rust/datafusion/src/logical_plan/mod.rs          |  48 +++++++
 rust/datafusion/src/optimizer/utils.rs           |   6 +
 rust/datafusion/src/physical_plan/aggregates.rs  |  13 +-
 rust/datafusion/src/physical_plan/expressions.rs |   6 +-
 rust/datafusion/src/physical_plan/mod.rs         |   1 +
 rust/datafusion/src/physical_plan/planner.rs     |  16 ++-
 rust/datafusion/src/physical_plan/udaf.rs        | 156 +++++++++++++++++++++
 rust/datafusion/src/sql/planner.rs               |  37 ++++-
 11 files changed, 526 insertions(+), 16 deletions(-)
 create mode 100644 rust/datafusion/examples/simple_udaf.rs
 create mode 100644 rust/datafusion/src/physical_plan/udaf.rs