File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -347,12 +347,12 @@ pub fn parquet_writer_props(
347
347
348
348
let event_time_column = ColumnPath :: new ( vec ! [ "EventTime" . to_string( ) ] ) ;
349
349
props = props
350
- . set_column_encoding ( event_time_column. clone ( ) , Encoding :: DELTA_BINARY_PACKED )
350
+ . set_column_encoding ( event_time_column. clone ( ) , Encoding :: PLAIN )
351
351
. set_column_statistics_enabled ( event_time_column. clone ( ) , EnabledStatistics :: Page ) ;
352
352
353
353
let user_id_column = ColumnPath :: new ( vec ! [ "UserID" . to_string( ) ] ) ;
354
354
props = props
355
- . set_column_encoding ( user_id_column. clone ( ) , Encoding :: RLE )
355
+ . set_column_encoding ( user_id_column. clone ( ) , Encoding :: PLAIN )
356
356
. set_column_statistics_enabled ( user_id_column. clone ( ) , EnabledStatistics :: Page ) ;
357
357
358
358
props = props. set_sorting_columns ( Some ( sorting_column_vec) ) ;
You can’t perform that action at this time.
0 commit comments