Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions parquet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,11 @@ name = "read_with_rowgroup"
required-features = ["arrow", "async"]
path = "./examples/read_with_rowgroup.rs"

[[example]]
name = "object_store"
required-features = ["arrow", "async"]
path = "./examples/object_store.rs"

[[test]]
name = "arrow_writer_layout"
required-features = ["arrow"]
Expand Down
2 changes: 2 additions & 0 deletions parquet/benches/arrow_reader_clickbench.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ use parquet::arrow::arrow_reader::{
ArrowPredicate, ArrowPredicateFn, ArrowReaderMetadata, ArrowReaderOptions,
ParquetRecordBatchReaderBuilder, RowFilter,
};
#[allow(deprecated)]
use parquet::arrow::async_reader::ParquetObjectReader;
use parquet::arrow::{ParquetRecordBatchStreamBuilder, ProjectionMask};
use parquet::file::metadata::PageIndexPolicy;
Expand Down Expand Up @@ -737,6 +738,7 @@ impl ReadTest {
}

/// Run the filter and projection using the async `ObjectStore` reader
#[allow(deprecated)]
async fn run_async_object_store(&self) {
let hits_path = hits_1();
let parent = hits_path.parent().unwrap();
Expand Down
Loading
Loading