HHH-10269 : JDBC Statement is not closed if exception appeared during query execution

This commit is contained in:
Gail Badner 2016-03-11 13:55:19 -08:00
parent 3e00630808
commit bdb458a609
2 changed files with 21 additions and 0 deletions

View File

@ -2130,6 +2130,11 @@ public abstract class Loader {
session.getJdbcCoordinator().afterStatementExecution(); session.getJdbcCoordinator().afterStatementExecution();
throw sqle; throw sqle;
} }
catch (HibernateException he) {
session.getJdbcCoordinator().getResourceRegistry().release( st );
session.getJdbcCoordinator().afterStatementExecution();
throw he;
}
} }
protected void autoDiscoverTypes(ResultSet rs) { protected void autoDiscoverTypes(ResultSet rs) {

View File

@ -1055,4 +1055,20 @@ public class QueryTest extends BaseEntityManagerFunctionalTestCase {
em.close(); em.close();
} }
@Test
@TestForIssue( jiraKey = "HHH-10269")
public void testFailingNativeQuery() {
final EntityManager entityManager = getOrCreateEntityManager();
// Tests that Oracle does not run out of cursors.
for (int i = 0; i < 1000; i++) {
try {
entityManager.createNativeQuery("Select 1 from NotExistedTable").getResultList();
fail( "expected PersistenceException" );
} catch (PersistenceException e) {
// expected
}
}
}
} }