Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb committed Jun 10, 2024
1 parent 74db440 commit 3163058
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parquet/src/file/properties.rs
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,7 @@ impl WriterPropertiesBuilder {
/// Sets flag to enable/disable dictionary encoding for a specific column.
///
/// Takes precedence over [`Self::set_dictionary_enabled`].
fn set_column_dictionary_enabled(mut self, col: ColumnPath, value: bool) -> Self {
pub fn set_column_dictionary_enabled(mut self, col: ColumnPath, value: bool) -> Self {
self.get_mut_props(col).set_dictionary_enabled(value);
self
}
Expand Down

0 comments on commit 3163058

Please sign in to comment.