okumin commented on code in PR #6094:
URL: https://github.com/apache/hive/pull/6094#discussion_r2375051564


##########
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:
   What would happen if we implement this? My local test succeeded without this 
change



-- 
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]

Reply via email to