dimas-b commented on code in PR #1430:
URL: https://github.com/apache/polaris/pull/1430#discussion_r2056385033


##########
extension/persistence/relational-jdbc/src/main/java/org/apache/polaris/extension/persistence/relational/jdbc/JdbcBasePersistenceImpl.java:
##########
@@ -95,10 +95,12 @@ public void writeEntity(
       } catch (SQLException e) {
         if ((datasourceOperations.isConstraintViolation(e)
             || datasourceOperations.isAlreadyExistsException(e))) {
-          throw new EntityAlreadyExistsException(entity);
+          EntityAlreadyExistsException ee = new 
EntityAlreadyExistsException(entity);

Review Comment:
   Good point - fixed :+1: 



-- 
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: issues-unsubscr...@polaris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to