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/01/19 17:42:17 UTC

[arrow] branch master updated (f63cffa -> 7e0cb0a)

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.


    from f63cffa  ARROW-11305 Skip first argument (which is the program name) in parquet-rowcount binary
     add 7e0cb0a  ARROW-11108: [Rust] Fixed performance issue in mutableBuffer.

No new revisions were added by this update.

Summary of changes:
 rust/arrow/benches/buffer_create.rs             |   3 +-
 rust/arrow/src/array/array_binary.rs            |  54 ++---
 rust/arrow/src/array/array_boolean.rs           |   4 +-
 rust/arrow/src/array/array_list.rs              |  75 ++----
 rust/arrow/src/array/array_primitive.rs         |  24 +-
 rust/arrow/src/array/array_string.rs            |  14 +-
 rust/arrow/src/array/array_union.rs             |  35 ++-
 rust/arrow/src/array/builder.rs                 | 169 ++++++--------
 rust/arrow/src/array/data.rs                    |   4 +-
 rust/arrow/src/array/equal/utils.rs             |   7 +-
 rust/arrow/src/array/raw_pointer.rs             |  17 +-
 rust/arrow/src/array/transform/boolean.rs       |   6 +-
 rust/arrow/src/array/transform/list.rs          |  13 +-
 rust/arrow/src/array/transform/mod.rs           |  26 +--
 rust/arrow/src/array/transform/primitive.rs     |   9 +-
 rust/arrow/src/array/transform/utils.rs         |  12 +-
 rust/arrow/src/array/transform/variable_size.rs |   9 +-
 rust/arrow/src/buffer.rs                        | 288 +++++++++++++++---------
 rust/arrow/src/bytes.rs                         |  13 --
 rust/arrow/src/compute/kernels/aggregate.rs     |   1 -
 rust/arrow/src/compute/kernels/arithmetic.rs    |   8 +-
 rust/arrow/src/compute/kernels/boolean.rs       |   4 +-
 rust/arrow/src/compute/kernels/cast.rs          |  18 +-
 rust/arrow/src/compute/kernels/comparison.rs    |  40 ++--
 rust/arrow/src/compute/kernels/filter.rs        |   9 +-
 rust/arrow/src/compute/kernels/length.rs        |   3 +-
 rust/arrow/src/compute/kernels/limit.rs         |  11 +-
 rust/arrow/src/compute/kernels/sort.rs          |   4 +-
 rust/arrow/src/compute/kernels/substring.rs     |   6 +-
 rust/arrow/src/compute/kernels/take.rs          |  25 +-
 rust/arrow/src/compute/util.rs                  |  13 +-
 rust/arrow/src/datatypes.rs                     |   2 +
 rust/arrow/src/json/reader.rs                   |  25 +-
 rust/arrow/src/lib.rs                           |   4 +-
 rust/arrow/src/memory.rs                        |  59 +++--
 rust/arrow/src/util/integration_util.rs         |   2 +-
 rust/parquet/src/arrow/array_reader.rs          |   2 +-
 rust/parquet/src/arrow/record_reader.rs         |  26 +--
 38 files changed, 492 insertions(+), 552 deletions(-)