eric-maynard commented on code in PR #1772:
URL: https://github.com/apache/polaris/pull/1772#discussion_r2121863208
##########
service/common/src/main/java/org/apache/polaris/service/catalog/iceberg/IcebergCatalog.java:
##########
@@ -212,6 +212,14 @@ public IcebergCatalog(
this.polarisEventListener = polarisEventListener;
}
+ @Override
+ public boolean tableExists(TableIdentifier identifier) {
+ if (isValidIdentifier(identifier)) {
+ return newTableOps(identifier).current() != null;
Review Comment:
Instead of this, can we just use `loadTable` directly like the current code
does?
--
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]