<Spring Data Rollback only rolls back partially> W...
# stackoverflow
u
Spring Data Rollback only rolls back partially While integration testing, I am attempting to test the execution of a stored procedure. To do so, I need to perform the following steps: Insert some setup data Execute the stored procedure Find the data in the downstream repo that is written to by the stored proc I am able to complete all of this successfully, however, after completion of the test only the rows written by the stored procedure are rolled back. Those rows inserted via the JdbcAggregateTemplate are not rolled back. Obviously I...