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

[arrow] branch master updated (3a0eafa -> d4a521a)

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

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


    from 3a0eafa  ARROW-11614: Fix round() logic to return positive zero when argument is zero
     add d4a521a  ARROW-11597: [Rust] Split file in smaller ones.

No new revisions were added by this update.

Summary of changes:
 rust/arrow/src/datatypes.rs          | 3348 ----------------------------------
 rust/arrow/src/datatypes/datatype.rs |  477 +++++
 rust/arrow/src/datatypes/field.rs    |  498 +++++
 rust/arrow/src/datatypes/mod.rs      | 1241 +++++++++++++
 rust/arrow/src/datatypes/native.rs   |  265 +++
 rust/arrow/src/datatypes/numeric.rs  |  534 ++++++
 rust/arrow/src/datatypes/schema.rs   |  301 +++
 rust/arrow/src/datatypes/types.rs    |  181 ++
 8 files changed, 3497 insertions(+), 3348 deletions(-)
 delete mode 100644 rust/arrow/src/datatypes.rs
 create mode 100644 rust/arrow/src/datatypes/datatype.rs
 create mode 100644 rust/arrow/src/datatypes/field.rs
 create mode 100644 rust/arrow/src/datatypes/mod.rs
 create mode 100644 rust/arrow/src/datatypes/native.rs
 create mode 100644 rust/arrow/src/datatypes/numeric.rs
 create mode 100644 rust/arrow/src/datatypes/schema.rs
 create mode 100644 rust/arrow/src/datatypes/types.rs