This is an automated email from the ASF dual-hosted git repository.
tustvold pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
from c6387c1ffc fix(csv)!: infer null for empty column. (#4910)
add 538a7bfed5 Specialize Thrift Decoding (~40% Faster) (#4891) (#4892)
No new revisions were added by this update.
Summary of changes:
parquet/CONTRIBUTING.md | 6 +-
parquet/Cargo.toml | 5 +
.../parse_time.rs => parquet/benches/metadata.rs | 34 +-
parquet/regen.sh | 35 +++
parquet/src/arrow/arrow_writer/mod.rs | 3 +-
parquet/src/arrow/async_reader/metadata.rs | 11 +-
parquet/src/bin/parquet-layout.rs | 3 +-
parquet/src/bloom_filter/mod.rs | 15 +-
parquet/src/file/footer.rs | 13 +-
parquet/src/file/page_index/index_reader.rs | 8 +-
parquet/src/file/serialized_reader.rs | 12 +-
parquet/src/file/writer.rs | 3 +-
parquet/src/format.rs | 348 ++++++++++-----------
parquet/src/lib.rs | 2 +
parquet/src/thrift.rs | 284 +++++++++++++++++
15 files changed, 546 insertions(+), 236 deletions(-)
copy arrow-cast/benches/parse_time.rs => parquet/benches/metadata.rs (57%)
create mode 100755 parquet/regen.sh
create mode 100644 parquet/src/thrift.rs