We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a01f0b2 commit 3110518Copy full SHA for 3110518
datafusion/datasource-parquet/src/row_filter.rs
@@ -195,7 +195,11 @@ pub(crate) struct FilterCandidate {
195
filter_schema: SchemaRef,
196
}
197
198
-/// Tracks the projection of an expression in both root and leaf coordinates.
+/// Projection specification for nested columns using Parquet leaf column indices.
199
+///
200
+/// For nested types like List and Struct, Parquet stores data in leaf columns
201
+/// (the primitive fields). This struct tracks which leaf columns are needed
202
+/// to evaluate a filter expression.
203
#[derive(Debug, Clone)]
204
struct LeafProjection {
205
/// Leaf column indices in the Parquet schema descriptor.
0 commit comments