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

[arrow-datafusion] branch dependabot/cargo/master/arrow-buffer-27.0.0 updated (c6a95ca2d -> d5ba3ca71)

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

github-bot pushed a change to branch dependabot/cargo/master/arrow-buffer-27.0.0
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git


 discard c6a95ca2d Update arrow-buffer requirement from 26.0.0 to 27.0.0
     add 8bfc0ea2e Parse nanoseconds for intervals (#4186)
     add 2a1c014c1 Improve error message for regexp_match 'g' flag (#4203)
     add c9361e021 Provide a builder for ListingOptions with fixups (#4207)
     add 4653df465 Support unsigned integers in  `unwrap_cast_in_comparison` Optimizer rule (#4149)
     add 28ca3eeac Add try_optimize method (#4208)
     add 0dad3f33c upgrade required chrono version to 0.4.23 (#4225)
     add d5ba3ca71 Update arrow-buffer requirement from 26.0.0 to 27.0.0

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   (c6a95ca2d)
            \
             N -- N -- N   refs/heads/dependabot/cargo/master/arrow-buffer-27.0.0 (d5ba3ca71)

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:
 benchmarks/src/bin/tpch.rs                         |  13 +-
 datafusion-cli/Cargo.lock                          | 110 ++++++++--------
 .../examples/parquet_sql_multiple_files.rs         |  13 +-
 datafusion/common/src/parsers.rs                   | 143 +++++++++++----------
 datafusion/core/Cargo.toml                         |   2 +-
 datafusion/core/src/datasource/listing/table.rs    | 129 +++++++++++++++----
 .../core/src/datasource/listing_table_factory.rs   |  13 +-
 datafusion/core/src/execution/context.rs           |  14 +-
 datafusion/core/src/execution/options.rs           |  53 +++-----
 datafusion/core/tests/dataframe_functions.rs       |   5 -
 datafusion/core/tests/path_partition.rs            |  12 +-
 datafusion/core/tests/sql/expr.rs                  |   6 +-
 datafusion/core/tests/sql/joins.rs                 |  12 +-
 datafusion/optimizer/Cargo.toml                    |   2 +-
 .../optimizer/src/decorrelate_where_exists.rs      |  76 ++++++-----
 datafusion/optimizer/src/optimizer.rs              |  21 ++-
 datafusion/optimizer/src/test/mod.rs               |   8 ++
 .../optimizer/src/unwrap_cast_in_comparison.rs     | 126 +++++++++++++++---
 datafusion/optimizer/src/utils.rs                  |  11 +-
 datafusion/optimizer/tests/integration-test.rs     |   6 +-
 datafusion/physical-expr/Cargo.toml                |   2 +-
 datafusion/physical-expr/src/regex_expressions.rs  |  21 ++-
 datafusion/proto/src/logical_plan.rs               |  14 +-
 23 files changed, 517 insertions(+), 295 deletions(-)