Crate orc_rust

source ·
Expand description

A native Rust implementation of the Apache ORC file format, providing API’s to read data into Apache Arrow in-memory arrays.

§Example usage

let file = File::open("/path/to/file.orc").unwrap();
let reader = ArrowReaderBuilder::try_new(file).unwrap().build();
let record_batches = reader.collect::<Result<Vec<_>, _>>().unwrap();

Re-exports§

Modules§