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/27 17:12:57 UTC

[arrow] branch master updated (ae1d24e -> 75cdad4)

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 ae1d24e  ARROW-9839: [Rust] [DataFusion] Implement ExecutionPlan.as_any
     add 75cdad4  ARROW-9754: [Rust] [DataFusion] Implement async in ExecutionPlan trait

No new revisions were added by this update.

Summary of changes:
 rust/benchmarks/Cargo.toml                         |   2 +-
 rust/benchmarks/src/bin/nyctaxi.rs                 |  13 +-
 rust/benchmarks/src/bin/tpch.rs                    |   9 +-
 rust/datafusion/Cargo.toml                         |   3 +-
 rust/datafusion/benches/aggregate_query_sql.rs     |  20 +-
 rust/datafusion/benches/math_query_sql.rs          |  27 +-
 rust/datafusion/benches/sort_limit_query_sql.rs    |  47 ++--
 rust/datafusion/examples/csv_sql.rs                |   5 +-
 rust/datafusion/examples/dataframe.rs              |   5 +-
 rust/datafusion/examples/flight_server.rs          |   5 +-
 rust/datafusion/examples/memory_table_api.rs       |   5 +-
 rust/datafusion/examples/parquet_sql.rs            |   5 +-
 rust/datafusion/examples/simple_udaf.rs            |   5 +-
 rust/datafusion/examples/simple_udf.rs             |   5 +-
 rust/datafusion/src/bin/repl.rs                    |   9 +-
 rust/datafusion/src/dataframe.rs                   |  15 +-
 rust/datafusion/src/datasource/memory.rs           |  16 +-
 rust/datafusion/src/datasource/parquet.rs          |  52 ++--
 rust/datafusion/src/execution/context.rs           | 243 +++++++++---------
 rust/datafusion/src/execution/dataframe_impl.rs    |   7 +-
 rust/datafusion/src/physical_plan/csv.rs           |  17 +-
 rust/datafusion/src/physical_plan/empty.rs         |  19 +-
 rust/datafusion/src/physical_plan/explain.rs       |   5 +-
 rust/datafusion/src/physical_plan/filter.rs        |  13 +-
 .../datafusion/src/physical_plan/hash_aggregate.rs |  15 +-
 rust/datafusion/src/physical_plan/limit.rs         |  18 +-
 rust/datafusion/src/physical_plan/memory.rs        |   5 +-
 rust/datafusion/src/physical_plan/merge.rs         |  64 ++---
 rust/datafusion/src/physical_plan/mod.rs           |   5 +-
 rust/datafusion/src/physical_plan/parquet.rs       |  11 +-
 rust/datafusion/src/physical_plan/planner.rs       |   4 +-
 rust/datafusion/src/physical_plan/projection.rs    |  13 +-
 rust/datafusion/src/physical_plan/sort.rs          |  19 +-
 rust/datafusion/src/test/mod.rs                    |   4 +-
 rust/datafusion/tests/sql.rs                       | 282 ++++++++++-----------
 rust/datafusion/tests/user_defined_plan.rs         |  46 ++--
 36 files changed, 550 insertions(+), 488 deletions(-)