We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c193d2e commit cd6d766Copy full SHA for cd6d766
1 file changed
datafusion/datasource-parquet/src/opener.rs
@@ -153,7 +153,9 @@ impl FileOpener for ParquetOpener {
153
metadata,
154
&mut reader,
155
// Since we're manually loading the page index the option here should not matter but we pass it in for consistency
156
- ArrowReaderOptions::new().with_page_index(true),
+ ArrowReaderOptions::new()
157
+ .with_page_index(true)
158
+ .with_schema(physical_file_schema.clone()),
159
)
160
.await?;
161
}
0 commit comments