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

github-bot pushed a change to branch 
dependabot/cargo/main/arrow-parquet-9e0b249e9c
in repository https://gitbox.apache.org/repos/asf/datafusion.git


    omit 1d091217cc chore(deps): bump the arrow-parquet group with 2 updates
     add d68fca91fd Only unnest source for `EmptyRelation` (#15159)
     add e294b1fd07 chore(deps): bump rust_decimal from 1.37.0 to 1.37.1 
(#15378)
     add e5affe1e5c chore(deps): bump chrono-tz from 0.10.1 to 0.10.2 (#15377)
     add 42e7e5628f remove duplicate test (#15385)
     add 3f538f882b Minor: add average time for clickbench benchmark query 
(#15381)
     add 916ccc39f2 feat: include some BinaryOperator from sqlparser (#15327)
     add 0ff89844a2 added test (#15362)
     add a2db3f0d7c Documentation: Plan custom expressions (#15353)
     add 49737d86dc  Migrate physical plan tests to `insta` (Part-2) (#15364)
     add b38c731ec7 fix: write hive partitions for any int/uint/float (#15337)
     add 45ed5aa5d0 fix: `core_expressions` feature flag broken, move `overlay` 
into `core` functions (#15217)
     add 0c2aa0c89c fix: Redundant files spilled during external sort + 
introduce `SpillManager` (#15355)
     add 908ca0e684 Migrate physical plan tests to `insta` (Part-3 / Final) 
(#15399)
     add 02e1c720d9 chore(deps): bump the arrow-parquet group with 2 updates

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   (1d091217cc)
            \
             N -- N -- N   
refs/heads/dependabot/cargo/main/arrow-parquet-9e0b249e9c (02e1c720d9)

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:
 .github/workflows/rust.yml                         |   3 -
 Cargo.lock                                         |  11 +-
 benchmarks/src/clickbench.rs                       |   4 +
 datafusion/datasource/src/write/demux.rs           |  60 +-
 datafusion/expr-common/src/operator.rs             | 108 +++-
 datafusion/expr-common/src/type_coercion/binary.rs |  27 +-
 datafusion/functions/Cargo.toml                    |   4 -
 datafusion/functions/src/core/mod.rs               |   7 +
 .../functions/src/{string => core}/overlay.rs      |   0
 datafusion/functions/src/core/planner.rs           |   2 +-
 datafusion/functions/src/lib.rs                    |   5 +-
 datafusion/functions/src/string/mod.rs             |   5 -
 datafusion/functions/src/string/overlay.rs         | 263 +-------
 datafusion/physical-expr/src/expressions/binary.rs |  11 +-
 .../physical-plan/src/aggregates/topk/heap.rs      |  52 +-
 .../physical-plan/src/joins/nested_loop_join.rs    | 172 +++---
 .../physical-plan/src/joins/sort_merge_join.rs     | 677 ++++++++++-----------
 datafusion/physical-plan/src/metrics/baseline.rs   |  25 +
 datafusion/physical-plan/src/metrics/mod.rs        |   2 +-
 datafusion/physical-plan/src/repartition/mod.rs    |  59 +-
 datafusion/physical-plan/src/sorts/partial_sort.rs | 116 ++--
 datafusion/physical-plan/src/sorts/sort.rs         | 167 +++--
 .../src/sorts/sort_preserving_merge.rs             | 157 +++--
 datafusion/physical-plan/src/spill.rs              | 412 +++++++++++--
 .../src/windows/bounded_window_agg_exec.rs         |  66 +-
 datafusion/sql/src/expr/binary_op.rs               |  16 +-
 datafusion/sql/src/unparser/expr.rs                |  24 +
 datafusion/sql/src/unparser/plan.rs                |  42 +-
 datafusion/sql/tests/cases/plan_to_sql.rs          |   6 +
 datafusion/sqllogictest/Cargo.toml                 |   2 +-
 datafusion/sqllogictest/test_files/copy.slt        |  34 +-
 datafusion/sqllogictest/test_files/expr.slt        |  50 ++
 datafusion/substrait/src/logical_plan/producer.rs  |  11 +
 datafusion/wasmtest/Cargo.toml                     |   3 +
 datafusion/wasmtest/src/lib.rs                     |  71 ++-
 docs/source/library-user-guide/adding-udfs.md      |  85 +++
 docs/source/user-guide/sql/scalar_functions.md     |  27 +
 test-utils/Cargo.toml                              |   2 +-
 38 files changed, 1649 insertions(+), 1139 deletions(-)
 copy datafusion/functions/src/{string => core}/overlay.rs (100%)


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to