dongjoon-hyun commented on issue #2098: URL: https://github.com/apache/orc/issues/2098#issuecomment-2571722923
To @MohamedAdelHsn , the error message means you are not using Apache ORC. ``` org.apache.hadoop.hive.ql.io.FileFormatException: Malformed ORC file ``` Apache ORC code uses `org.apache.orc.FileFormatException` which belongs to `org.apache.orc` package. - https://github.com/apache/orc/blob/main/java/core/src/java/org/apache/orc/FileFormatException.java In addition, Apache ORC handles empty ORC files without exceptions. - https://github.com/apache/orc/pull/163 For the record, it seems that you are using very old Hive versions with that bugs. Please file a report to Apache Hive community. -- 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]
