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