You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by al...@apache.org on 2022/02/15 19:06:38 UTC

[arrow-datafusion] branch physical-plan updated (3242cef -> aea87aa)

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

alamb pushed a change to branch physical-plan
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git.


    from 3242cef  remove reference to logical plan in physical plan
     add 1431ef3  TPC-H benchmark can optionally write JSON output file with benchmark summary (#1766)
     add 1bedaf3  Abstract over logical and physical plan representations in Ballista (#1677)
     add 2236840  Update datafusion versions (#1793)
     add 6c80725  Fix logical conflict (#1801)
     add 93aacb6  rename references of expr in logical plan module after datafusion-expr split (#1797)
     add d35adc9  Update splits (#1803)
     add e5f6969  Create ListingTableConfig which includes file format and schema inference (#1715)
     add 52f9dff  Improve tpch benchmark errors (#1800)
     add 0138b39  Introduce `Row` format backed by raw bytes (#1782)
     add 4cc8e44  Ensure most of links in docs are correct (#1808)
     add 0a50dcd  Update to sqlparser 0.14 (#1796)
     add 7be0e26  Fixup some doc warnings (#1811)
     add 2e91818  update readme doc (#1817)
     add 89fdcc4  Update README.md to remove Ruby binding reference (#1822)
     add eb121ba  Update datafusion to use arrow 9.0.0 (#1775)
     add 81e76ed  Update CHANGELOG.md, update release scripts (#1807)
     add 2c634cf  Final CHANGELOG touchups for 7.0.0 (#1828)
     add 79b46f8  Add RAT to dependabot config (#1829)
     add ca765d5  Fix verification scripts for 7.0.0 release (#1830)
     add 7a46084  The returned path value of get_by_uri should be self-described with entire path (#1779)
     add d79ca16  Octetlength in protobuf should use the octet_length function (#1834)
     add 43ed320  Add section on testing to the Developers doc (#1471)
     add 21f990a  Merge remote-tracking branch 'apache/master' into physical-plan
     add aea87aa  fix: missing pub use

No new revisions were added by this update.

Summary of changes:
 .github/dependabot.yml                             |  17 +
 CHANGELOG.md                                       |   1 -
 DEVELOPERS.md                                      |  73 ++
 README.md                                          |   1 -
 ballista/rust/client/Cargo.toml                    |   4 +-
 ballista/rust/client/README.md                     |   2 +-
 ballista/rust/client/src/context.rs                |   9 +-
 ballista/rust/core/Cargo.toml                      |   6 +-
 ballista/rust/core/README.md                       |   2 +-
 ballista/rust/core/proto/ballista.proto            |  16 +-
 .../core/src/execution_plans/distributed_query.rs  |  79 +-
 .../rust/core/src/serde/logical_plan/from_proto.rs | 306 +------
 ballista/rust/core/src/serde/logical_plan/mod.rs   | 965 ++++++++++++++++++++-
 .../rust/core/src/serde/logical_plan/to_proto.rs   | 349 --------
 ballista/rust/core/src/serde/mod.rs                | 584 ++++++++++++-
 .../core/src/serde/physical_plan/from_proto.rs     | 382 --------
 ballista/rust/core/src/serde/physical_plan/mod.rs  | 923 +++++++++++++++++++-
 .../rust/core/src/serde/physical_plan/to_proto.rs  | 333 -------
 ballista/rust/core/src/serde/scheduler/to_proto.rs |  17 -
 ballista/rust/core/src/utils.rs                    |  52 +-
 ballista/rust/executor/Cargo.toml                  |   6 +-
 ballista/rust/executor/src/execution_loop.rs       |  19 +-
 ballista/rust/executor/src/executor.rs             |  10 +-
 ballista/rust/executor/src/executor_server.rs      |  44 +-
 ballista/rust/executor/src/main.rs                 |  12 +-
 ballista/rust/executor/src/standalone.rs           |  13 +-
 ballista/rust/scheduler/Cargo.toml                 |   2 +-
 ballista/rust/scheduler/src/api/handlers.rs        |   5 +-
 ballista/rust/scheduler/src/api/mod.rs             |  12 +-
 ballista/rust/scheduler/src/lib.rs                 | 142 ++-
 ballista/rust/scheduler/src/main.rs                |  46 +-
 ballista/rust/scheduler/src/planner.rs             |  18 +-
 ballista/rust/scheduler/src/standalone.rs          |  16 +-
 ballista/rust/scheduler/src/state/mod.rs           | 166 ++--
 benchmarks/Cargo.toml                              |   3 +
 benchmarks/src/bin/tpch.rs                         | 187 +++-
 datafusion-cli/Cargo.toml                          |   6 +-
 datafusion-common/Cargo.toml                       |   8 +-
 datafusion-common/src/dfschema.rs                  |   4 +-
 datafusion-examples/Cargo.toml                     |   2 +-
 datafusion-expr/Cargo.toml                         |   8 +-
 datafusion-expr/src/expr.rs                        |   4 +-
 datafusion-expr/src/lib.rs                         |   2 +-
 datafusion-expr/src/signature.rs                   |   6 +-
 datafusion/CHANGELOG.md                            | 292 +++++++
 datafusion/Cargo.toml                              |  14 +-
 datafusion/benches/sort_limit_query_sql.rs         |  18 +-
 datafusion/fuzz-utils/Cargo.toml                   |   2 +-
 datafusion/src/catalog/information_schema.rs       |   6 +-
 datafusion/src/datasource/listing/mod.rs           |   2 +-
 datafusion/src/datasource/listing/table.rs         | 200 ++++-
 datafusion/src/datasource/object_store/local.rs    |   5 +
 datafusion/src/datasource/object_store/mod.rs      |   9 +-
 datafusion/src/execution/context.rs                |   7 +-
 datafusion/src/lib.rs                              |   7 +-
 datafusion/src/logical_plan/builder.rs             |  21 +-
 datafusion/src/logical_plan/expr.rs                |   7 +-
 datafusion/src/logical_plan/expr_rewriter.rs       |   6 +-
 datafusion/src/logical_plan/expr_simplier.rs       |   4 +-
 datafusion/src/logical_plan/registry.rs            |   6 +-
 datafusion/src/optimizer/simplify_expressions.rs   |   5 +-
 datafusion/src/physical_optimizer/pruning.rs       |   6 +-
 .../expressions/approx_percentile_cont.rs          |   1 +
 datafusion/src/physical_plan/hyperloglog/mod.rs    |   2 +-
 datafusion/src/physical_plan/metrics/mod.rs        |   6 +-
 datafusion/src/physical_plan/metrics/tracker.rs    |   2 +-
 datafusion/src/physical_plan/metrics/value.rs      |   2 +-
 datafusion/src/physical_plan/mod.rs                |   2 +-
 .../physical_plan/sorts/sort_preserving_merge.rs   |   2 +-
 datafusion/src/physical_plan/tdigest/mod.rs        |   2 +-
 datafusion/src/physical_plan/window_functions.rs   |   2 +-
 datafusion/src/row/mod.rs                          | 486 +++++++++++
 datafusion/src/row/reader.rs                       | 408 +++++++++
 datafusion/src/row/writer.rs                       | 332 +++++++
 datafusion/src/sql/planner.rs                      |  96 +-
 datafusion/tests/path_partition.rs                 |  15 +-
 dev/release/README.md                              |   4 +-
 dev/release/create-tarball.sh                      |   7 -
 dev/release/update_change_log-all.sh               |   1 -
 dev/release/update_change_log-python.sh            |  32 -
 dev/release/update_change_log.sh                   |   8 +-
 dev/release/verify-release-candidate.sh            |  14 +-
 82 files changed, 5074 insertions(+), 1829 deletions(-)
 create mode 100644 datafusion/src/row/mod.rs
 create mode 100644 datafusion/src/row/reader.rs
 create mode 100644 datafusion/src/row/writer.rs
 delete mode 100755 dev/release/update_change_log-python.sh