Skip to content
Merged
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
6 changes: 3 additions & 3 deletions datafusion/datasource/src/file_scan_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ impl FileScanConfig {
}
}

fn projected_stats(&self) -> Statistics {
pub fn projected_stats(&self) -> Statistics {
let statistics = self.file_source.statistics().unwrap();

let table_cols_stats = self
Expand All @@ -679,7 +679,7 @@ impl FileScanConfig {
}
}

fn projected_schema(&self) -> Arc<Schema> {
pub fn projected_schema(&self) -> Arc<Schema> {
let table_fields: Vec<_> = self
.projection_indices()
.into_iter()
Expand All @@ -699,7 +699,7 @@ impl FileScanConfig {
))
}

fn projected_constraints(&self) -> Constraints {
pub fn projected_constraints(&self) -> Constraints {
let indexes = self.projection_indices();

self.constraints
Expand Down