difin commented on code in PR #6094:
URL: https://github.com/apache/hive/pull/6094#discussion_r2376452830
##########
iceberg/iceberg-catalog/src/main/java/org/apache/iceberg/hive/client/HiveRESTCatalogClient.java:
##########
@@ -228,4 +231,9 @@ public void dropDatabase(DropDatabaseRequest req) {
validateCurrentCatalog(req.getCatalogName());
restCatalog.dropNamespace(Namespace.of(req.getName()));
}
+
+ @Override
+ public LockResponse lock(LockRequest request) {
+ return new LockResponse(request.getTxnid(), LockState.ACQUIRED);
+ }
Review Comment:
I retested on my local and it worked without it. Very strange, because
before it was failing on an attempt to acquire a lock. I'll remove this change
because it does work without it as it turns out.
--
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]