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 46dee85 ARROW-9874: [C++] Add sink-owning version of IPC writers
add 8eb49fe ARROW-9821: [Rust][DataFusion] Make crate::logical_plan and
crate::physical_plan modules
No new revisions were added by this update.
Summary of changes:
rust/benchmarks/src/bin/nyctaxi.rs | 2 +-
rust/benchmarks/src/bin/tpch.rs | 2 +-
rust/datafusion/src/dataframe.rs | 4 +--
rust/datafusion/src/datasource/csv.rs | 6 ++--
rust/datafusion/src/datasource/datasource.rs | 2 +-
rust/datafusion/src/datasource/memory.rs | 4 +--
rust/datafusion/src/datasource/parquet.rs | 4 +--
rust/datafusion/src/execution/context.rs | 22 ++++++-------
rust/datafusion/src/execution/dataframe_impl.rs | 4 +--
rust/datafusion/src/execution/mod.rs | 1 -
rust/datafusion/src/lib.rs | 3 +-
.../src/{logicalplan.rs => logical_plan/mod.rs} | 4 +--
rust/datafusion/src/optimizer/filter_push_down.rs | 8 ++---
rust/datafusion/src/optimizer/optimizer.rs | 2 +-
.../src/optimizer/projection_push_down.rs | 6 ++--
rust/datafusion/src/optimizer/type_coercion.rs | 10 +++---
rust/datafusion/src/optimizer/utils.rs | 4 +--
.../src/{execution => }/physical_plan/common.rs | 2 +-
.../src/{execution => }/physical_plan/csv.rs | 4 +--
.../src/{execution => }/physical_plan/empty.rs | 6 ++--
.../src/{execution => }/physical_plan/explain.rs | 6 ++--
.../{execution => }/physical_plan/expressions.rs | 8 ++---
.../src/{execution => }/physical_plan/filter.rs | 10 +++---
.../src/{execution => }/physical_plan/functions.rs | 7 ++---
.../physical_plan/hash_aggregate.rs | 12 ++++----
.../src/{execution => }/physical_plan/limit.rs | 10 +++---
.../physical_plan/math_expressions.rs | 0
.../src/{execution => }/physical_plan/memory.rs | 2 +-
.../src/{execution => }/physical_plan/merge.rs | 10 +++---
.../src/{execution => }/physical_plan/mod.rs | 2 +-
.../src/{execution => }/physical_plan/parquet.rs | 4 +--
.../src/{execution => }/physical_plan/planner.rs | 36 ++++++++++------------
.../{execution => }/physical_plan/projection.rs | 6 ++--
.../src/{execution => }/physical_plan/sort.rs | 14 ++++-----
.../{execution => }/physical_plan/type_coercion.rs | 6 ++--
.../src/{execution => }/physical_plan/udf.rs | 2 +-
rust/datafusion/src/prelude.rs | 4 +--
rust/datafusion/src/sql/planner.rs | 8 ++---
rust/datafusion/src/test/mod.rs | 4 +--
rust/datafusion/tests/sql.rs | 4 +--
40 files changed, 125 insertions(+), 130 deletions(-)
rename rust/datafusion/src/{logicalplan.rs => logical_plan/mod.rs} (99%)
rename rust/datafusion/src/{execution => }/physical_plan/common.rs (99%)
rename rust/datafusion/src/{execution => }/physical_plan/csv.rs (98%)
rename rust/datafusion/src/{execution => }/physical_plan/empty.rs (95%)
rename rust/datafusion/src/{execution => }/physical_plan/explain.rs (95%)
rename rust/datafusion/src/{execution => }/physical_plan/expressions.rs (99%)
rename rust/datafusion/src/{execution => }/physical_plan/filter.rs (95%)
rename rust/datafusion/src/{execution => }/physical_plan/functions.rs (97%)
rename rust/datafusion/src/{execution => }/physical_plan/hash_aggregate.rs
(98%)
rename rust/datafusion/src/{execution => }/physical_plan/limit.rs (95%)
rename rust/datafusion/src/{execution => }/physical_plan/math_expressions.rs
(100%)
rename rust/datafusion/src/{execution => }/physical_plan/memory.rs (98%)
rename rust/datafusion/src/{execution => }/physical_plan/merge.rs (95%)
rename rust/datafusion/src/{execution => }/physical_plan/mod.rs (99%)
rename rust/datafusion/src/{execution => }/physical_plan/parquet.rs (98%)
rename rust/datafusion/src/{execution => }/physical_plan/planner.rs (94%)
rename rust/datafusion/src/{execution => }/physical_plan/projection.rs (96%)
rename rust/datafusion/src/{execution => }/physical_plan/sort.rs (94%)
rename rust/datafusion/src/{execution => }/physical_plan/type_coercion.rs (98%)
rename rust/datafusion/src/{execution => }/physical_plan/udf.rs (98%)