Skip to content

Commit

Permalink
Page filter (#1)
Browse files Browse the repository at this point in the history
* make page_filter public

* make parquet public
  • Loading branch information
jiacai2050 committed Jun 2, 2023
1 parent 06e9f53 commit 13314c3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion datafusion/core/src/physical_plan/file_format/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ mod chunked_store;
mod csv;
mod file_stream;
mod json;
mod parquet;
pub mod parquet;

pub(crate) use self::csv::plan_to_csv;
pub use self::csv::{CsvConfig, CsvExec, CsvOpener};
Expand Down
2 changes: 1 addition & 1 deletion datafusion/core/src/physical_plan/file_format/parquet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ use parquet::file::{metadata::ParquetMetaData, properties::WriterProperties};
use parquet::schema::types::ColumnDescriptor;

mod metrics;
mod page_filter;
pub mod page_filter;
mod row_filter;
mod row_groups;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ use super::metrics::ParquetFileMetrics;
/// So we can entirely skip rows 0->199 and 250->299 as we know they
/// can not contain rows that match the predicate.
#[derive(Debug)]
pub(crate) struct PagePruningPredicate {
pub struct PagePruningPredicate {
predicates: Vec<PruningPredicate>,
}

Expand Down

0 comments on commit 13314c3

Please sign in to comment.