HHH-17826 ResultSet closed while scrolling results

This commit is contained in:
Andrea Boriero 2024-04-03 18:48:41 +02:00 committed by Andrea Boriero
parent 27a9ec209e
commit 239014db35
1 changed files with 9 additions and 5 deletions

View File

@ -128,6 +128,7 @@ public class ScrollableResultsImpl<R> extends AbstractScrollableResults<R> {
final LoadContexts loadContexts = persistenceContext.getLoadContexts();
loadContexts.register( getJdbcValuesSourceProcessingState() );
persistenceContext.beforeLoad();
try {
try {
currentRow = getRowReader().readRow( getRowProcessingState(), getProcessingOptions() );
@ -136,9 +137,12 @@ public class ScrollableResultsImpl<R> extends AbstractScrollableResults<R> {
}
finally {
persistenceContext.afterLoad();
loadContexts.deregister( getJdbcValuesSourceProcessingState() );
}
persistenceContext.initializeNonLazyCollections();
}
finally {
loadContexts.deregister( getJdbcValuesSourceProcessingState() );
}
afterScrollOperation();
}