We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f678ce commit 6c5de48Copy full SHA for 6c5de48
spring-jdbc/src/main/java/org/springframework/jdbc/datasource/JdbcTransactionObjectSupport.java
@@ -190,7 +190,7 @@ public void releaseSavepoint(Object savepoint) throws TransactionException {
190
}
191
// ignore Microsoft SQLServerException: This operation is not supported.
192
String msg = ex.getMessage();
193
- if (msg == null || !msg.contains("not supported")) {
+ if (msg == null || (!msg.contains("not supported") && !msg.contains("3B001"))) {
194
throw new TransactionSystemException("Could not explicitly release JDBC savepoint", ex);
195
196
0 commit comments