ayushtkn commented on code in PR #4292:
URL: https://github.com/apache/hive/pull/4292#discussion_r1221257910
##########
ql/src/java/org/apache/hadoop/hive/ql/metadata/HiveStorageHandler.java:
##########
@@ -550,14 +550,33 @@ default boolean isTimeTravelAllowed() {
return false;
}
+ /**
+ * Introduced by HIVE-25457 for iceberg to query metadata table.
+ * @return true if the storage handler can support it
+ * @deprecated Use {@link #isTableMetaRefSupported()}
+ */
+ @Deprecated
default boolean isMetadataTableSupported() {
return false;
}
Review Comment:
Should be
```
@Deprecated
default boolean isMetadataTableSupported() {
return isTableMetaRefSupported();
}
```
--
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]