Rich-T-kid commented on code in PR #24227:
URL: https://github.com/apache/datafusion/pull/24227#discussion_r3878264513
##########
datafusion/datasource-parquet/src/file_format.rs:
##########
@@ -402,7 +426,12 @@ impl FileFormat for ParquetFormat {
}
drop(seen);
- let schemas = schemas.into_iter().map(|(_, schema)| schema);
+ // Normalize dict-promoted schemas before merging so mixed dict/plain
files merge cleanly.
+ let mut schemas: Vec<Schema> =
+ schemas.into_iter().map(|(_, schema)| schema).collect();
Review Comment:
will remove the allowlist so this should no longer be an issue 👍
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]