File tree 2 files changed +4
-4
lines changed
datafusion/core/src/datasource/physical_plan/parquet
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 17
17
18
18
use parquet:: arrow:: arrow_reader:: RowSelection ;
19
19
20
- /// Specifies a selection of row groups / rows within a ParquetFile to decode.
20
+ /// Specifies a selection of rows and row groups within a ParquetFile to decode.
21
21
///
22
- /// This structure can limit the row groups and data pages a `ParquetExec` will
23
- /// read and decode.
22
+ /// A `ParquetAccessPlan` is used to limits the row groups and data pages a `ParquetExec`
23
+ /// will read and decode and this improve performance .
24
24
///
25
25
/// Note that page level pruning based on ArrowPredicate is applied after all of
26
26
/// these selections
Original file line number Diff line number Diff line change @@ -284,7 +284,7 @@ fn find_column_index(
284
284
285
285
/// Intersects the [`RowSelector`]s
286
286
///
287
- /// For exampe , given:
287
+ /// For example , given:
288
288
/// * `RowSelector1: [ Skip(0~199), Read(200~299)]`
289
289
/// * `RowSelector2: [ Skip(0~99), Read(100~249), Skip(250~299)]`
290
290
///
You can’t perform that action at this time.
0 commit comments