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

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


 discard ada4280e24 chore(deps): update bigdecimal requirement from =0.4.1 to 
=0.4.3
     add 179179c0b7 chore(deps-dev): bump webpack-dev-middleware (#9741)
     add 21fe0b7762 Implement semi/anti join output statistics estimation 
(#9800)
     add 078aeb6b8a move Log2, Log10, Ln to datafusion-functions (#9869)
     add d896000ad3 Add CI compile checks for feature flags in 
datafusion-functions (#9772)
     add a5f771470e move the Translate, SubstrIndex, FindInSet functions to 
datafusion-functions (#9864)
     add aa879bf045 Support custom struct field names with new scalar function 
named_struct (#9743)
     add ab88220e90 Allow declaring partition columns in `PARTITION BY` clause, 
backwards compatible (#9599)
     add 2159d82952 Minor: Move depcheck out of datafusion crate (200 less 
crates to compile) (#9865)
     add 44a01e606a chore(deps): update bigdecimal requirement from =0.4.1 to 
=0.4.3

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   (ada4280e24)
            \
             N -- N -- N   refs/heads/dependabot/cargo/main/bigdecimal-eq-0.4.3 
(44a01e606a)

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                         |  78 ++++-
 Cargo.toml                                         |   2 +-
 datafusion-cli/Cargo.lock                          |   2 +-
 datafusion/core/Cargo.toml                         |  10 +-
 datafusion/expr/src/built_in_function.rs           |  61 ----
 datafusion/expr/src/expr_fn.rs                     |  13 -
 datafusion/functions-array/Cargo.toml              |   7 +
 .../benches/array_expression.rs                    |   4 +-
 datafusion/functions/Cargo.toml                    |   7 +-
 datafusion/functions/src/core/mod.rs               |   3 +
 datafusion/functions/src/core/named_struct.rs      | 148 ++++++++
 datafusion/functions/src/macros.rs                 |  10 +-
 datafusion/functions/src/math/mod.rs               |  15 +-
 .../src/unicode/{strpos.rs => find_in_set.rs}      |  78 +++--
 datafusion/functions/src/unicode/mod.rs            |  24 ++
 datafusion/functions/src/unicode/substrindex.rs    | 138 ++++++++
 datafusion/functions/src/unicode/translate.rs      | 213 ++++++++++++
 datafusion/optimizer/Cargo.toml                    |   3 +-
 datafusion/physical-expr/Cargo.toml                |   3 -
 datafusion/physical-expr/src/functions.rs          | 151 +--------
 datafusion/physical-expr/src/lib.rs                |   2 -
 .../physical-expr/src/unicode_expressions.rs       | 172 ----------
 datafusion/physical-plan/src/joins/utils.rs        | 373 ++++++++++++++++++---
 datafusion/proto/proto/datafusion.proto            |  12 +-
 datafusion/proto/src/generated/pbjson.rs           |  18 -
 datafusion/proto/src/generated/prost.rs            |  24 +-
 datafusion/proto/src/logical_plan/from_proto.rs    |  34 +-
 datafusion/proto/src/logical_plan/to_proto.rs      |   6 -
 datafusion/sql/src/expr/mod.rs                     |  45 ++-
 datafusion/sql/src/parser.rs                       |  59 +++-
 .../test_files/create_external_table.slt           |  10 +-
 datafusion/sqllogictest/test_files/explain.slt     |   4 +-
 .../sqllogictest/test_files/insert_to_external.slt |  36 +-
 datafusion/sqllogictest/test_files/struct.slt      | 112 ++++++-
 .../wasmtest/datafusion-wasm-app/package-lock.json |  12 +-
 {test-utils => dev/depcheck}/Cargo.toml            |  10 +-
 {datafusion/expr => dev/depcheck}/README.md        |  10 +-
 .../tests/depcheck.rs => dev/depcheck/src/main.rs  |  30 +-
 docs/source/user-guide/sql/scalar_functions.md     |  58 +++-
 39 files changed, 1333 insertions(+), 664 deletions(-)
 rename datafusion/{core => functions-array}/benches/array_expression.rs (93%)
 create mode 100644 datafusion/functions/src/core/named_struct.rs
 copy datafusion/functions/src/unicode/{strpos.rs => find_in_set.rs} (55%)
 create mode 100644 datafusion/functions/src/unicode/substrindex.rs
 create mode 100644 datafusion/functions/src/unicode/translate.rs
 delete mode 100644 datafusion/physical-expr/src/unicode_expressions.rs
 copy {test-utils => dev/depcheck}/Cargo.toml (80%)
 copy {datafusion/expr => dev/depcheck}/README.md (70%)
 rename datafusion/core/tests/depcheck.rs => dev/depcheck/src/main.rs (75%)

Reply via email to