This is an automated email from the ASF dual-hosted git repository.
paddyhoran pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git.
from aae5e6a ARROW-5859: [Python] Support ExtensionArray.to_numpy using
storage array
add a5a67e8 ARROW-5181: [Rust] Initial support for Arrow File reader
No new revisions were added by this update.
Summary of changes:
rust/arrow/Cargo.toml | 1 +
rust/arrow/src/array/array.rs | 29 ++
rust/arrow/src/datatypes.rs | 3 +-
rust/arrow/src/ipc/convert.rs | 386 ++++++++++++++++-
js/index.ts => rust/arrow/src/ipc/file/mod.rs | 2 +-
rust/arrow/src/ipc/file/reader.rs | 569 ++++++++++++++++++++++++++
rust/arrow/src/ipc/mod.rs | 1 +
rust/arrow/src/memory.rs | 1 -
rust/arrow/src/util/integration_util.rs | 60 ++-
rust/parquet/src/encodings/decoding.rs | 2 -
rust/parquet/src/encodings/encoding.rs | 5 -
11 files changed, 1027 insertions(+), 32 deletions(-)
copy js/index.ts => rust/arrow/src/ipc/file/mod.rs (96%)
create mode 100644 rust/arrow/src/ipc/file/reader.rs