From 3163058c6f6bd94654b48b22a1036015ecaa5919 Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Mon, 10 Jun 2024 16:18:46 -0400 Subject: [PATCH] fix --- parquet/src/file/properties.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parquet/src/file/properties.rs b/parquet/src/file/properties.rs index 4dd103108f5e..4843640ceeb4 100644 --- a/parquet/src/file/properties.rs +++ b/parquet/src/file/properties.rs @@ -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 }