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 2021/01/10 22:19:45 UTC

[arrow] branch master updated (3bf0a0f -> 49a1c7b)

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 3bf0a0f  ARROW-11198: [Packaging][Python] Ensure setuptools version during build supports markdown
     add 49a1c7b  ARROW-11200: [Rust] [DataFusion] Physical operators and expressions should have public accessor methods

No new revisions were added by this update.

Summary of changes:
 .../src/physical_plan/coalesce_batches.rs          |  10 ++
 rust/datafusion/src/physical_plan/csv.rs           |  35 +++++
 rust/datafusion/src/physical_plan/empty.rs         |   7 +
 rust/datafusion/src/physical_plan/explain.rs       |   6 +-
 rust/datafusion/src/physical_plan/expressions.rs   | 150 ++++++++++++++++++++-
 rust/datafusion/src/physical_plan/filter.rs        |  10 ++
 rust/datafusion/src/physical_plan/functions.rs     |  27 +++-
 .../datafusion/src/physical_plan/hash_aggregate.rs |  25 ++++
 rust/datafusion/src/physical_plan/hash_join.rs     |  20 +++
 rust/datafusion/src/physical_plan/limit.rs         |  22 +++
 rust/datafusion/src/physical_plan/merge.rs         |   5 +
 rust/datafusion/src/physical_plan/mod.rs           |   3 +
 rust/datafusion/src/physical_plan/parquet.rs       |  29 +++-
 rust/datafusion/src/physical_plan/projection.rs    |  10 ++
 rust/datafusion/src/physical_plan/repartition.rs   |  12 ++
 rust/datafusion/src/physical_plan/sort.rs          |  10 ++
 16 files changed, 377 insertions(+), 4 deletions(-)