File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -725,6 +725,7 @@ impl From<&ParquetFormatFactory> for protobuf::TableParquetOptions {
725725 compression_opt : global_options. global . compression . map ( |compression| {
726726 parquet_options:: CompressionOpt :: Compression ( compression)
727727 } ) ,
728+ enable_rle_to_dictionary : global_options. global . enable_rle_to_dictionary ,
728729 dictionary_enabled_opt : global_options. global . dictionary_enabled . map ( |enabled| {
729730 parquet_options:: DictionaryEnabledOpt :: DictionaryEnabled ( enabled)
730731 } ) ,
Original file line number Diff line number Diff line change @@ -358,6 +358,7 @@ impl TryFrom<&ParquetOptionsProto> for ParquetOptions {
358358 compression. clone ( )
359359 }
360360 } ) ,
361+ enable_rle_to_dictionary : proto. enable_rle_to_dictionary ,
361362 dictionary_enabled : proto. dictionary_enabled_opt . as_ref ( ) . map ( |opt| {
362363 match opt {
363364 parquet_options:: DictionaryEnabledOpt :: DictionaryEnabled (
You can’t perform that action at this time.
0 commit comments