File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
datafusion/core/src/datasource/physical_plan/parquet Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -393,10 +393,10 @@ macro_rules! get_statistics {
393
393
} )
394
394
} ,
395
395
DataType :: Binary => Ok ( Arc :: new( BinaryArray :: from_iter(
396
- [ <$stat_type_prefix ByteArrayStatsIterator >] :: new( $iterator) . map ( |x| x . map ( |x| x . to_vec ( ) ) ) ,
396
+ [ <$stat_type_prefix ByteArrayStatsIterator >] :: new( $iterator)
397
397
) ) ) ,
398
398
DataType :: LargeBinary => Ok ( Arc :: new( LargeBinaryArray :: from_iter(
399
- [ <$stat_type_prefix ByteArrayStatsIterator >] :: new( $iterator) . map ( |x| x . map ( |x|x . to_vec ( ) ) ) ,
399
+ [ <$stat_type_prefix ByteArrayStatsIterator >] :: new( $iterator)
400
400
) ) ) ,
401
401
DataType :: Utf8 => {
402
402
let iterator = [ <$stat_type_prefix ByteArrayStatsIterator >] :: new( $iterator) ;
You can’t perform that action at this time.
0 commit comments