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 2023/06/13 12:46:30 UTC

[arrow-datafusion] branch main updated (2ba067c8d2 -> fd444b4f68)

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

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


    from 2ba067c8d2 minor: use sql to setup test data for joins.slt rather than rust (#6656)
     add fd444b4f68  Support wider range of Subquery, handle the Count bug (#6457)

No new revisions were added by this update.

Summary of changes:
 datafusion/core/tests/sql/subqueries.rs            | 983 +++++++++++++++++++--
 .../core/tests/sqllogictests/test_files/joins.slt  |  56 +-
 .../sqllogictests/test_files/tpch/q11.slt.part     | 157 ++--
 .../sqllogictests/test_files/tpch/q15.slt.part     |  53 +-
 .../sqllogictests/test_files/tpch/q17.slt.part     |   8 +-
 .../sqllogictests/test_files/tpch/q2.slt.part      |  10 +-
 .../sqllogictests/test_files/tpch/q20.slt.part     |   8 +-
 .../sqllogictests/test_files/tpch/q22.slt.part     |  75 +-
 datafusion/core/tests/tpcds_planning.rs            |   9 -
 datafusion/expr/src/expr_rewriter/mod.rs           |  17 +
 datafusion/expr/src/logical_plan/plan.rs           |  75 ++
 datafusion/optimizer/src/analyzer/subquery.rs      |  10 +
 datafusion/optimizer/src/decorrelate.rs            | 498 +++++++++++
 .../src/decorrelate_predicate_subquery.rs          | 351 +++-----
 datafusion/optimizer/src/lib.rs                    |   1 +
 .../optimizer/src/scalar_subquery_to_join.rs       | 523 +++++------
 datafusion/optimizer/src/utils.rs                  |  24 -
 datafusion/optimizer/tests/integration-test.rs     |  16 +-
 datafusion/physical-expr/src/aggregate/average.rs  |  17 +-
 19 files changed, 2130 insertions(+), 761 deletions(-)
 create mode 100644 datafusion/optimizer/src/decorrelate.rs