openinx commented on pull request #3784:
URL: https://github.com/apache/iceberg/pull/3784#issuecomment-1053853573


   Other cases: 
   
   ```
   ➜  iceberg git:(master) find . -type f -name '*.java'  | xargs grep -i 
'Assume.*ORC'
   
./mr/src/test/java/org/apache/iceberg/mr/hive/TestHiveIcebergStorageHandlerWithEngine.java:
    assumeTrue(isVectorized && FileFormat.ORC.equals(fileFormat));
   
./flink/v1.12/flink/src/test/java/org/apache/iceberg/flink/actions/TestRewriteDataFilesAction.java:
    Assume.assumeFalse("ORC does not support getting length when file is 
opening", format.equals(FileFormat.ORC));
   
./flink/v1.14/flink/src/test/java/org/apache/iceberg/flink/actions/TestRewriteDataFilesAction.java:
    Assume.assumeFalse("ORC does not support getting length when file is 
opening", format.equals(FileFormat.ORC));
   
./flink/v1.13/flink/src/test/java/org/apache/iceberg/flink/actions/TestRewriteDataFilesAction.java:
    Assume.assumeFalse("ORC does not support getting length when file is 
opening", format.equals(FileFormat.ORC));
   
./hive3/src/main/java/org/apache/iceberg/mr/hive/vector/HiveVectorizedReader.java:
    // reader will assume that the ORC file ends at the task's start + length, 
and might fail reading the tail..
   ./data/src/test/java/org/apache/iceberg/io/TestRollingFileWriters.java:    
Assume.assumeFalse("ORC delete files are not supported", fileFormat == 
FileFormat.ORC);
   ./data/src/test/java/org/apache/iceberg/data/TestMetricsRowGroupFilter.java: 
   Assume.assumeFalse("ORC row group filter does not support StringStartsWith", 
format == FileFormat.ORC);
   ./data/src/test/java/org/apache/iceberg/data/TestMetricsRowGroupFilter.java: 
   Assume.assumeFalse("ORC row group filter does not support StringStartsWith", 
format == FileFormat.ORC);
   
./spark/v3.2/spark/src/test/java/org/apache/iceberg/spark/source/TestSparkMetadataColumns.java:
    Assume.assumeFalse(fileFormat == FileFormat.ORC && vectorized);
   
./spark/v3.0/spark/src/test/java/org/apache/iceberg/spark/source/TestSparkMetadataColumns.java:
    Assume.assumeFalse(fileFormat == FileFormat.ORC && vectorized);
   
./spark/v3.1/spark/src/test/java/org/apache/iceberg/spark/source/TestSparkMetadataColumns.java:
    Assume.assumeFalse(fileFormat == FileFormat.ORC && vectorized);
   ```


-- 
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]

Reply via email to