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 2020/11/15 13:00:05 UTC

[arrow] branch master updated (219b2cd -> 7a1ef18)

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 219b2cd  ARROW-10595: [Rust] Simplify inner loop of min/max kernels for non-null case
     add 7a1ef18  ARROW-10269: [Rust] Update to 2020-11-14 nightly

No new revisions were added by this update.

Summary of changes:
 .env                                               |   2 +-
 .github/workflows/rust.yml                         |   6 +-
 .github/workflows/rust_cron.yml                    |   2 +-
 ci/docker/debian-10-rust.dockerfile                |   2 +-
 ci/scripts/rust_coverage.sh                        |   4 +-
 rust/arrow/benches/array_from_vec.rs               |   3 +-
 rust/arrow/benches/equal.rs                        |   3 +
 rust/arrow/benches/filter_kernels.rs               |  15 +-
 rust/arrow/examples/dynamic_types.rs               |   3 +-
 rust/arrow/src/array/array_string.rs               |   6 +-
 rust/arrow/src/array/array_struct.rs               |   2 +-
 rust/arrow/src/array/builder.rs                    |   5 +-
 rust/arrow/src/array/data.rs                       |   2 +-
 rust/arrow/src/array/equal/list.rs                 |   2 +-
 rust/arrow/src/array/equal/mod.rs                  |   2 +-
 rust/arrow/src/array/equal_json.rs                 |   5 +-
 rust/arrow/src/array/iterator.rs                   |   3 +-
 rust/arrow/src/compute/kernels/aggregate.rs        |   2 +-
 rust/arrow/src/compute/kernels/cast.rs             |  24 ++-
 rust/arrow/src/compute/kernels/length.rs           |  52 +++---
 rust/arrow/src/compute/kernels/sort.rs             |   2 +-
 rust/arrow/src/compute/kernels/take.rs             |   2 +-
 rust/arrow/src/compute/util.rs                     |   4 +-
 rust/arrow/src/csv/reader.rs                       |   6 +-
 rust/arrow/src/datatypes.rs                        |  20 ++-
 rust/arrow/src/json/reader.rs                      | 193 ++++++++++-----------
 rust/arrow/src/lib.rs                              |  10 ++
 rust/arrow/src/util/buffered_iterator.rs           |   2 +-
 rust/arrow/src/util/pretty.rs                      |   2 +-
 rust/datafusion/src/lib.rs                         |  37 ++++
 .../src/bin/arrow-file-to-stream.rs                |  12 +-
 .../src/bin/arrow-stream-to-file.rs                |   6 +-
 rust/parquet/src/arrow/arrow_reader.rs             |   2 +-
 rust/parquet/src/arrow/schema.rs                   |   2 +-
 rust/parquet/src/bin/parquet-schema.rs             |   2 +-
 rust/parquet/src/column/reader.rs                  |   1 +
 rust/parquet/src/data_type.rs                      |  17 +-
 rust/parquet/src/encodings/encoding.rs             |   2 +-
 rust/parquet/src/lib.rs                            |  16 +-
 rust/parquet/src/record/api.rs                     |  11 +-
 rust/parquet/src/schema/parser.rs                  |   4 +-
 rust/parquet/src/schema/types.rs                   |  10 +-
 rust/parquet/src/util/io.rs                        |   4 +-
 rust/parquet_derive/src/parquet_field.rs           |  25 ++-
 rust/parquet_derive_test/src/lib.rs                |   2 +
 rust/rust-toolchain                                |   2 +-
 46 files changed, 284 insertions(+), 257 deletions(-)