zhangbutao commented on code in PR #5436:
URL: https://github.com/apache/hive/pull/5436#discussion_r1776650869
##########
iceberg/iceberg-catalog/src/main/java/org/apache/iceberg/hive/HiveOperationsBase.java:
##########
@@ -56,6 +59,21 @@ public interface HiveOperationsBase {
TableType tableType();
+ enum ContentType {
+ TABLE("Table"),
+ VIEW("View");
+
+ private final String value;
+
+ ContentType(String value) {
+ this.value = value;
+ }
+
+ public String value() {
Review Comment:
This part is for the coming iceberg native view. Can we optimize this in the
next backport? (integrate the iceberg native view)
--
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]