File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ pub struct ParquetReadOptions<'a> {
141141 pub file_extension : & ' a str ,
142142 /// Partition Columns
143143 pub table_partition_cols : Vec < String > ,
144- /// Should DataFusion parquet reader using the predicate to prune data,
144+ /// Should DataFusion parquet reader using the predicate to prune data,
145145 /// overridden by value on execution::context::SessionConfig
146146 pub parquet_pruning : bool ,
147147}
Original file line number Diff line number Diff line change @@ -309,9 +309,9 @@ impl<'a> DFParser<'a> {
309309 let has_header = self . parse_csv_has_header ( ) ;
310310
311311 let table_partition_cols = if self . parse_has_partition ( ) {
312- self . parse_partitions ( ) ?;
312+ self . parse_partitions ( ) ?;
313313 } else {
314- vec ! [ ]
314+ vec ! [ ]
315315 } ;
316316
317317 self . parser . expect_keyword ( Keyword :: LOCATION ) ?;
You can’t perform that action at this time.
0 commit comments