Skip to content
Open
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
1 change: 1 addition & 0 deletions datafusion/catalog-listing/src/helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -478,6 +478,7 @@ pub async fn pruned_partition_list<'a>(
statistics: None,
extensions: None,
metadata_size_hint: None,
distribution_statistics: None,
})
}));

Expand Down
1 change: 1 addition & 0 deletions datafusion/core/src/datasource/file_format/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ pub(crate) mod test_util {
partition_values: vec![],
range: None,
statistics: None,
distribution_statistics: None,
extensions: None,
metadata_size_hint: None,
}]
Expand Down
1 change: 1 addition & 0 deletions datafusion/core/src/datasource/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ mod tests {
partition_values: vec![],
range: None,
statistics: None,
distribution_statistics: None,
extensions: None,
metadata_size_hint: None,
};
Expand Down
5 changes: 5 additions & 0 deletions datafusion/core/src/datasource/physical_plan/parquet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1532,6 +1532,7 @@ mod tests {
partition_values: vec![],
range: Some(FileRange { start, end }),
statistics: None,
distribution_statistics: None,
extensions: None,
metadata_size_hint: None,
}
Expand Down Expand Up @@ -1629,6 +1630,7 @@ mod tests {
],
range: None,
statistics: None,
distribution_statistics: None,
extensions: None,
metadata_size_hint: None,
};
Expand Down Expand Up @@ -1719,6 +1721,7 @@ mod tests {
partition_values: vec![],
range: None,
statistics: None,
distribution_statistics: None,
extensions: None,
metadata_size_hint: None,
};
Expand Down Expand Up @@ -2266,6 +2269,7 @@ mod tests {
partition_values: vec![],
range: None,
statistics: None,
distribution_statistics: None,
extensions: None,
metadata_size_hint: None,
}
Expand All @@ -2282,6 +2286,7 @@ mod tests {
partition_values: vec![],
range: None,
statistics: None,
distribution_statistics: None,
extensions: None,
metadata_size_hint: None,
})
Expand Down
1 change: 1 addition & 0 deletions datafusion/core/src/test_util/parquet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ impl TestParquetFile {
partition_values: vec![],
range: None,
statistics: None,
distribution_statistics: None,
extensions: None,
metadata_size_hint: None,
});
Expand Down
1 change: 1 addition & 0 deletions datafusion/core/tests/parquet/custom_reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ async fn route_data_access_ops_to_parquet_file_reader_factory() {
partition_values: vec![],
range: None,
statistics: None,
distribution_statistics: None,
extensions: Some(Arc::new(String::from(EXPECTED_USER_DEFINED_METADATA))),
metadata_size_hint: None,
})
Expand Down
1 change: 1 addition & 0 deletions datafusion/core/tests/parquet/page_pruning.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ async fn get_parquet_exec(
partition_values: vec![],
range: None,
statistics: None,
distribution_statistics: None,
extensions: None,
metadata_size_hint: None,
};
Expand Down
1 change: 1 addition & 0 deletions datafusion/datasource/src/display.rs
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,7 @@ mod tests {
statistics: None,
extensions: None,
metadata_size_hint: None,
distribution_statistics: None,
}
}
}
1 change: 1 addition & 0 deletions datafusion/datasource/src/file_scan_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2091,6 +2091,7 @@ mod tests {
})),
extensions: None,
metadata_size_hint: None,
distribution_statistics: None,
}
}
}
Expand Down
Loading
Loading