You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by jo...@apache.org on 2021/02/14 12:09:18 UTC

[arrow] branch master updated (8547c61 -> d4608a9)

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

jorgecarleitao pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git.


    omit 8547c61  ARROW-11446: [DataFusion] Added support for scalarValue in Builtin functions.
    omit f55a3f3  ARROW-11594: [Rust] Support pretty printing of  NullArray
    omit 88e9eb8  ARROW-11599: [Rust] Add function to create array with all nulls
    omit 7660a22  ARROW-11586: [Rust][Datafusion] Remove force unwrap
    omit a350ebc  ARROW-11606: [Rust] [DataFusion] Add input schema to HashAggregateExec
    omit 34e7671  ARROW-11539: [Developer][Archery] Change items_per_seconds units
    omit d6fee75  ARROW-11557: [Rust][Datafusion] Add deregister_table
    omit 2be54a5  ARROW-11563: [Rust] Support Cast(Utf8, TimeStamp(Nanoseconds, None))
    omit 05fe095  ARROW-11570: [Rust] ScalarValue - support Date64
     add f49406a  Moved file.
     add 37ac558  Split file in module.
     add d4608a9  Addressed comments.

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   (8547c61)
            \
             N -- N -- N   refs/heads/master (d4608a9)

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:
 dev/archery/archery/benchmark/compare.py           |    6 +-
 rust/arrow/src/array/array.rs                      |  221 ---
 rust/arrow/src/array/mod.rs                        |    1 -
 rust/arrow/src/array/null.rs                       |   20 +-
 rust/arrow/src/buffer.rs                           | 1760 --------------------
 rust/arrow/src/buffer/buffer.rs                    |  549 ++++++
 rust/arrow/src/buffer/mod.rs                       |   69 +
 rust/arrow/src/buffer/mutable.rs                   |  684 ++++++++
 rust/arrow/src/buffer/ops.rs                       |  429 +++++
 rust/arrow/src/compute/kernels/cast.rs             |   36 -
 rust/arrow/src/compute/kernels/cast_utils.rs       |  299 ----
 rust/arrow/src/compute/kernels/mod.rs              |    1 -
 rust/arrow/src/error.rs                            |    2 -
 rust/arrow/src/util/display.rs                     |    3 -
 rust/arrow/src/util/pretty.rs                      |   45 +-
 rust/datafusion/examples/simple_udf.rs             |   13 +-
 rust/datafusion/src/execution/context.rs           |   38 +-
 rust/datafusion/src/execution/dataframe_impl.rs    |    6 +-
 .../src/physical_plan/array_expressions.rs         |   23 +-
 .../src/physical_plan/crypto_expressions.rs        |  191 +--
 .../src/physical_plan/datetime_expressions.rs      |  578 ++++---
 .../src/physical_plan/expressions/binary.rs        |    1 -
 .../src/physical_plan/expressions/mod.rs           |  169 +-
 .../src/physical_plan/expressions/nullif.rs        |  188 ---
 rust/datafusion/src/physical_plan/functions.rs     |  202 +--
 .../datafusion/src/physical_plan/hash_aggregate.rs |   17 +-
 .../src/physical_plan/math_expressions.rs          |   44 +-
 rust/datafusion/src/physical_plan/mod.rs           |    1 -
 rust/datafusion/src/physical_plan/parquet.rs       |   18 +-
 rust/datafusion/src/physical_plan/planner.rs       |   26 -
 .../src/physical_plan/string_expressions.rs        |  229 +--
 rust/datafusion/src/scalar.rs                      |  183 +-
 rust/datafusion/src/sql/planner.rs                 |    2 +-
 rust/datafusion/tests/sql.rs                       |   28 +-
 34 files changed, 2573 insertions(+), 3509 deletions(-)
 delete mode 100644 rust/arrow/src/buffer.rs
 create mode 100644 rust/arrow/src/buffer/buffer.rs
 create mode 100644 rust/arrow/src/buffer/mod.rs
 create mode 100644 rust/arrow/src/buffer/mutable.rs
 create mode 100644 rust/arrow/src/buffer/ops.rs
 delete mode 100644 rust/arrow/src/compute/kernels/cast_utils.rs
 delete mode 100644 rust/datafusion/src/physical_plan/expressions/nullif.rs