deniskuzZ commented on code in PR #5076:
URL: https://github.com/apache/hive/pull/5076#discussion_r1522793217
##########
ql/src/java/org/apache/hadoop/hive/ql/metadata/HiveStorageHandler.java:
##########
@@ -747,4 +750,18 @@ default List<Partition>
getPartitionsByExpr(org.apache.hadoop.hive.ql.metadata.T
throw new UnsupportedOperationException("Storage handler does not support
getting partitions by expression " +
"for a table.");
}
+
+ default boolean supportsMergeFiles() {
+ return false;
+ }
+
+ default List<FileStatus> getMergeInputFiles(Properties properties) throws
IOException {
+ throw new UnsupportedOperationException("Storage handler does not support
getting merge input files " +
+ "for a table.");
+ }
+
+ default StorageHandlerMergeProperties getMergeProperties(Properties
properties) {
Review Comment:
getMergeTaskProperties
--
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]