andygrove commented on code in PR #1755: URL: https://github.com/apache/datafusion-comet/pull/1755#discussion_r2098075383
########## common/src/main/java/org/apache/comet/parquet/NativeBatchReader.java: ########## @@ -332,9 +346,8 @@ public void init() throws URISyntaxException, IOException { } else if (optFileField.isPresent()) { // The column we are reading may be a complex type in which case we check if each field in // the requested type is in the file type (and the same data type) - if (!isEqual(field, optFileField.get())) { - throw new UnsupportedOperationException("Schema evolution is not supported"); - } + // This makes the same check as Spark's VectorzedParquetReader Review Comment: ```suggestion // This makes the same check as Spark's VectorizedParquetReader ``` -- 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: github-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org