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/08/15 20:59:54 UTC

[arrow-datafusion] branch dependabot/cargo/master/ahash-0.8 updated (d1a295c99 -> ce16edfad)

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

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


    omit d1a295c99 Update ahash requirement from 0.7 to 0.8
     add dbfb0e6ff Remove offset if its zero (#3102)
     add b80c85359 docs: fix typo (#3109)
     add b6832d50f Hash binary values (#3098)
     add d527ca7cd Fix #3106 Automatic version updates for github actions with dependabot (#3107)
     add b6099ba53 Bump actions/setup-python from 3 to 4 (#3111)
     add 56052c526 Bump actions/setup-node from 2 to 3 (#3112)
     add 91bdc839e Bump actions/labeler from 2.2.0 to 4.0.0 (#3114)
     add 50fd12add Bump actions/checkout from 2 to 3 (#3113)
     add c525e6c64 minor: doc fixes: fix link to datafusion-python project and add link to slides for receā€¦ (#3118)
     add 9e0bc50c4 add arrow_typeof (#3120)
     add b1765f77d remove python docs, now they're in another project (#3119)
     add 48f9b7ab5 separate contributors guide (#3128)
     add ff53f8ba0 Minor: Clean up `array` test (#3121)
     add 6fe6dcec4 Move expressions to top-level page (#3134)
     add 5ddad472a Update to object_store 0.4 (#3089)
     add ee55d89cb feat: Support Binary bitwise shift operators (<< and >>) (#3037)
     add 366630568 Bump actions/labeler from 4.0.0 to 4.0.1 (#3144)
     add 6509d0d70 Feature/support timestamp plus minus interval (#3110)
     add 49a3b005c combine CLI pages (#3133)
     add 15a9a4bec feat: Add support for TIME literal values (#3010)
     add 4cf0cf0dc User Guide: Add documentation for JOIN syntax (#3130)
     add 3c0b1c066 Remove outdated license text left over from arrow repo (#3154)
     add 5778ef2cf Expose RowAccumulator in physical_plan (#3151)
     add 4876cd672 User Guide: Add documentation for subquery syntax (#3132)
     add d9dab9262 MINOR: User Guide: Move Data Types and Information Schema to their own pages (#3131)
     add fb70057bb Rename `DateIntervalExpr` to `DateTimeIntervalExpr` (#3150)
     add 36def8fb9 update cargo lock (#3164)
     add ce16edfad Update ahash requirement from 0.7 to 0.8

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   (d1a295c99)
            \
             N -- N -- N   refs/heads/dependabot/cargo/master/ahash-0.8 (ce16edfad)

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/dependabot.yml                             |    7 +
 .github/workflows/dev.yml                          |    8 +-
 .github/workflows/dev_pr.yml                       |    4 +-
 .github/workflows/rust.yml                         |   28 +-
 CONTRIBUTING.md                                    |  255 +--
 LICENSE.txt                                        | 2008 --------------------
 README.md                                          |   14 +-
 datafusion-cli/Cargo.lock                          |   24 +-
 datafusion/common/Cargo.toml                       |    2 +-
 datafusion/common/src/scalar.rs                    |   32 +
 datafusion/core/Cargo.toml                         |    2 +-
 .../core/src/datasource/file_format/parquet.rs     |   19 +-
 .../src/physical_plan/file_format/chunked_store.rs |   18 +-
 .../core/src/physical_plan/file_format/parquet.rs  |   24 +
 datafusion/core/src/physical_plan/hash_utils.rs    |   53 +-
 datafusion/core/src/physical_plan/mod.rs           |    1 +
 datafusion/core/tests/path_partition.rs            |   20 +-
 datafusion/core/tests/sql/arrow_typeof.rs          |  139 ++
 datafusion/core/tests/sql/expr.rs                  |   10 +
 datafusion/core/tests/sql/functions.rs             |   29 +-
 datafusion/core/tests/sql/mod.rs                   |    1 +
 datafusion/core/tests/sql/timestamp.rs             |  177 ++
 datafusion/expr/src/binary_rule.rs                 |   20 +-
 datafusion/expr/src/built_in_function.rs           |    6 +-
 datafusion/expr/src/expr_fn.rs                     |    4 +
 datafusion/expr/src/function.rs                    |    3 +
 datafusion/expr/src/operator.rs                    |    6 +
 datafusion/optimizer/src/eliminate_limit.rs        |   30 +-
 datafusion/physical-expr/src/expressions/binary.rs |   56 +-
 .../src/expressions/binary/kernels.rs              |  225 ++-
 .../physical-expr/src/expressions/datetime.rs      |  452 ++++-
 datafusion/physical-expr/src/expressions/mod.rs    |    2 +-
 datafusion/physical-expr/src/functions.rs          |    9 +
 datafusion/physical-expr/src/planner.rs            |    8 +-
 datafusion/proto/proto/datafusion.proto            |    1 +
 datafusion/proto/src/from_proto.rs                 |    1 +
 datafusion/proto/src/to_proto.rs                   |    1 +
 datafusion/sql/src/planner.rs                      |   22 +-
 docs/.gitignore                                    |    1 -
 docs/requirements.txt                              |    1 -
 docs/source/cli/index.rst                          |  128 --
 docs/source/conf.py                                |    2 -
 .../communication.md                               |   13 -
 .../source/contributor-guide/index.md              |   44 +-
 .../quarterly_roadmap.md                           |    2 +-
 .../roadmap.md                                     |   24 +-
 .../specification/index.rst}                       |   14 +-
 .../specification/invariants.md                    |    2 +-
 .../specification/output-field-name-semantic.md    |    2 +-
 docs/source/index.rst                              |   36 +-
 docs/source/python/api.rst                         |   30 -
 docs/source/python/api/execution_context.rst       |   27 -
 docs/source/python/api/expression.rst              |   27 -
 docs/source/python/api/functions.rst               |   27 -
 docs/source/python/index.rst                       |  251 ---
 docs/source/user-guide/cli.md                      |  148 +-
 docs/source/user-guide/dataframe.md                |  190 +-
 .../user-guide/{dataframe.md => expressions.md}    |   83 -
 docs/source/user-guide/sql/data_types.md           |   51 +
 docs/source/user-guide/sql/datafusion-functions.md |   22 -
 docs/source/user-guide/sql/index.rst               |    5 +-
 docs/source/user-guide/sql/information_schema.md   |   68 +
 docs/source/user-guide/sql/select.md               |   87 +
 docs/source/user-guide/sql/sql_status.md           |  113 +-
 docs/source/user-guide/sql/subqueries.md           |   98 +
 65 files changed, 1780 insertions(+), 3437 deletions(-)
 create mode 100644 datafusion/core/tests/sql/arrow_typeof.rs
 delete mode 100644 docs/source/cli/index.rst
 rename docs/source/{community => contributor-guide}/communication.md (80%)
 copy CONTRIBUTING.md => docs/source/contributor-guide/index.md (83%)
 rename docs/source/{specification => contributor-guide}/quarterly_roadmap.md (99%)
 rename docs/source/{specification => contributor-guide}/roadmap.md (94%)
 rename docs/source/{python/api/dataframe.rst => contributor-guide/specification/index.rst} (86%)
 rename docs/source/{ => contributor-guide}/specification/invariants.md (99%)
 rename docs/source/{ => contributor-guide}/specification/output-field-name-semantic.md (99%)
 delete mode 100644 docs/source/python/api.rst
 delete mode 100644 docs/source/python/api/execution_context.rst
 delete mode 100644 docs/source/python/api/expression.rst
 delete mode 100644 docs/source/python/api/functions.rst
 delete mode 100644 docs/source/python/index.rst
 copy docs/source/user-guide/{dataframe.md => expressions.md} (53%)
 create mode 100644 docs/source/user-guide/sql/data_types.md
 delete mode 100644 docs/source/user-guide/sql/datafusion-functions.md
 create mode 100644 docs/source/user-guide/sql/information_schema.md
 create mode 100644 docs/source/user-guide/sql/subqueries.md