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/08 13:41:27 UTC

[arrow] branch master updated (da641aa -> 54f8d28)

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 da641aa  ARROW-9920: [Python] Validate input to pa.concat_arrays() to avoid segfault
     add 54f8d28  ARROW-9821: [Rust][DataFusion] Support for User Defined ExtensionNodes in the LogicalPlan

No new revisions were added by this update.

Summary of changes:
 rust/datafusion/src/execution/context.rs           |  86 +++-
 rust/datafusion/src/execution/dataframe_impl.rs    |   2 +-
 rust/datafusion/src/logical_plan/mod.rs            |  87 +++-
 rust/datafusion/src/optimizer/optimizer.rs         |  15 +
 .../src/optimizer/projection_push_down.rs          |   7 +-
 rust/datafusion/src/optimizer/utils.rs             |   5 +
 rust/datafusion/src/physical_plan/planner.rs       | 260 ++++++++++-
 rust/datafusion/tests/customer.csv                 |   4 +
 rust/datafusion/tests/sql.rs                       |   6 +-
 rust/datafusion/tests/user_defined_plan.rs         | 510 +++++++++++++++++++++
 10 files changed, 938 insertions(+), 44 deletions(-)
 create mode 100644 rust/datafusion/tests/customer.csv
 create mode 100644 rust/datafusion/tests/user_defined_plan.rs