Skip to content

Commit

Permalink
chore: make ParquetExec's with_file_groups public
Browse files Browse the repository at this point in the history
  • Loading branch information
NGA-TRAN committed Oct 2, 2024
1 parent 821e14c commit 6e1ec2f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ impl ParquetExec {
)
}

fn with_file_groups(mut self, file_groups: Vec<Vec<PartitionedFile>>) -> Self {
pub fn with_file_groups(mut self, file_groups: Vec<Vec<PartitionedFile>>) -> Self {
self.base_config.file_groups = file_groups;
// Changing file groups may invalidate output partitioning. Update it also
let output_partitioning = Self::output_partitioning_helper(&self.base_config);
Expand Down

0 comments on commit 6e1ec2f

Please sign in to comment.