Related to pull request:
org.springframework.jdbc.datasource.JdbcTransactionObjectSupport releaseSavepoint
The function was only handling exceptions as a log, but when it was modified to throw an exception, the nested transaction in the Oracle database was broken.
The Oracle driver does not support explicit releaseSavepoint. It releases automatically.
A modification is needed to revert to the existing logic that does not throw exceptions or to prevent releaseSavepoint calls when using an Oracle database.
Related to pull request:
org.springframework.jdbc.datasource.JdbcTransactionObjectSupportreleaseSavepointThe function was only handling exceptions as a log, but when it was modified to throw an exception, the nested transaction in the Oracle database was broken.
The Oracle driver does not support explicit
releaseSavepoint. It releases automatically.A modification is needed to revert to the existing logic that does not throw exceptions or to prevent
releaseSavepointcalls when using an Oracle database.