iprithv commented on code in PR #5094:
URL: https://github.com/apache/polaris/pull/5094#discussion_r3745212465


##########
persistence/relational-jdbc/src/main/java/org/apache/polaris/persistence/relational/jdbc/DatasourceOperations.java:
##########
@@ -393,7 +394,8 @@ <T> T withRetries(Operation<T> operation) throws 
SQLException {
           // Handle Exceptions from ResultSet Iterator consumer, as it throws 
a RTE, ignore RTE from
           // the transactions.
           if (e.getCause() instanceof SQLException
-              && !(e instanceof EntityAlreadyExistsException)) {
+              && !(e instanceof EntityAlreadyExistsException)
+              && !(e instanceof RetryOnConcurrencyException)) {

Review Comment:
   Pushed the changes. Thanks for the nudge!



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

Reply via email to