You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ji...@apache.org on 2023/06/03 13:30:36 UTC

[arrow-datafusion] branch add-greatest-least updated (4a2c33829e -> 538e085f42)

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

jiayuliu pushed a change to branch add-greatest-least
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git


 discard 4a2c33829e fix unit test
 discard a567b85f86 fix clippy
 discard b6f9f35b96 [built-in function] add greatest and least
     add 3466522779 Minor: Clean up `use`s to point at real crates (#6515)
     add 21a14a1af3 Standardize RUST_LOG configuration test setup (#6506)
     add e6af36a540 Fix new clippy lint (#6535)
     add d9d06a4433 feat: datafusion-cli support executes sql with escaped characters (#6498)
     add 5ec14e1757 Minor: Add EXCEPT/EXCLUDE to SQL guide (#6512)
     add 859251b4a2 fix: error instead of panic when date_bin interval is 0 (#6522)
     add d450dc1dca Add link to Python Bindings (#6532)
     add 9d22054a1f feat: fix docs (#6534)
     add 538e085f42 [built-in function] add greatest and least

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (4a2c33829e)
            \
             N -- N -- N   refs/heads/add-greatest-least (538e085f42)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 Cargo.toml                                         |   2 +
 README.md                                          |   2 +-
 datafusion-cli/Cargo.lock                          |  12 +-
 datafusion-cli/Cargo.toml                          |   2 +-
 datafusion-cli/src/exec.rs                         |  26 ++--
 datafusion-cli/src/helper.rs                       | 160 ++++++++++++++++++---
 datafusion/core/src/catalog/information_schema.rs  |   2 +-
 datafusion/core/src/catalog/listing_schema.rs      |  16 ++-
 datafusion/core/src/execution/mod.rs               |   8 +-
 .../aggregates/bounded_aggregate_stream.rs         |  12 +-
 .../core/src/physical_plan/aggregates/mod.rs       |   7 +-
 .../src/physical_plan/aggregates/no_grouping.rs    |   4 +-
 .../core/src/physical_plan/aggregates/row_hash.rs  |   9 +-
 datafusion/core/src/physical_plan/analyze.rs       |   2 +-
 .../core/src/physical_plan/coalesce_batches.rs     |   2 +-
 .../core/src/physical_plan/coalesce_partitions.rs  |   2 +-
 datafusion/core/src/physical_plan/common.rs        |   2 +-
 datafusion/core/src/physical_plan/empty.rs         |   2 +-
 datafusion/core/src/physical_plan/explain.rs       |   2 +-
 .../core/src/physical_plan/file_format/avro.rs     |   2 +-
 .../core/src/physical_plan/file_format/csv.rs      |   2 +-
 .../core/src/physical_plan/file_format/json.rs     |   2 +-
 .../core/src/physical_plan/file_format/mod.rs      |   2 +-
 .../core/src/physical_plan/file_format/parquet.rs  |   2 +-
 datafusion/core/src/physical_plan/filter.rs        |   2 +-
 datafusion/core/src/physical_plan/insert.rs        |   2 +-
 .../core/src/physical_plan/joins/cross_join.rs     |   6 +-
 .../src/physical_plan/joins/nested_loop_join.rs    |   4 +-
 .../src/physical_plan/joins/sort_merge_join.rs     |   6 +-
 .../src/physical_plan/joins/symmetric_hash_join.rs |   2 +-
 datafusion/core/src/physical_plan/limit.rs         |   2 +-
 datafusion/core/src/physical_plan/memory.rs        |   2 +-
 datafusion/core/src/physical_plan/mod.rs           |   2 +-
 datafusion/core/src/physical_plan/planner.rs       |   6 +-
 datafusion/core/src/physical_plan/projection.rs    |   2 +-
 .../core/src/physical_plan/repartition/mod.rs      |   4 +-
 datafusion/core/src/physical_plan/sorts/sort.rs    |  12 +-
 .../physical_plan/sorts/sort_preserving_merge.rs   |   2 +-
 datafusion/core/src/physical_plan/streaming.rs     |   2 +-
 datafusion/core/src/physical_plan/union.rs         |   2 +-
 datafusion/core/src/physical_plan/unnest.rs        |   2 +-
 datafusion/core/src/physical_plan/values.rs        |   2 +-
 .../windows/bounded_window_agg_exec.rs             |   2 +-
 .../src/physical_plan/windows/window_agg_exec.rs   |   4 +-
 datafusion/core/tests/memory_limit.rs              |   1 +
 datafusion/core/tests/parquet/filter_pushdown.rs   |   7 -
 datafusion/core/tests/parquet/mod.rs               |   7 +
 datafusion/core/tests/sql/expr.rs                  |  27 ++++
 datafusion/core/tests/sql/subqueries.rs            |   6 -
 datafusion/core/tests/sql_integration.rs           |   7 +
 .../tests/sqllogictests/test_files/timestamps.slt  |  21 ++-
 datafusion/execution/src/lib.rs                    |   2 +
 datafusion/expr/src/conditional_expressions.rs     |   2 +-
 datafusion/expr/src/expr_rewriter/mod.rs           |   5 -
 datafusion/expr/src/lib.rs                         |   7 +
 datafusion/expr/src/logical_plan/plan.rs           |   3 +-
 datafusion/expr/src/table_source.rs                |   4 +-
 datafusion/optimizer/src/lib.rs                    |   2 +-
 datafusion/optimizer/tests/integration-test.rs     |   1 +
 datafusion/physical-expr/Cargo.toml                |   2 +
 .../physical-expr/src/comparison_expressions.rs    | 106 +++++++++++++-
 .../physical-expr/src/datetime_expressions.rs      |  18 +++
 datafusion/sql/tests/integration_test.rs           |   1 +
 docs/source/user-guide/sql/select.md               |  17 +++
 64 files changed, 457 insertions(+), 141 deletions(-)