-
Bug
-
Resolution: Unresolved
-
Major
-
None
-
7.3.10.GA
-
False
-
None
-
False
-
-
-
-
-
-
-
The JPA 2.2 Query#getResultStream returns a Stream wrapping a Hibernate ScrollableResultsIterator.
However, even if a terminal Stream operation is called, the underlying ScrollableResultsIterator will stay open until the Session is closed.
More, the current implementation does not pass the closeHandler to the IntStream, LongStream, or DoubleStream when calling mapToInt or other methods that return a primitive stream.
We need to create a StreamDecorator, IntStreamDecorator, LongStreamDecorator, and DoubleStreamDecorator that can both delegate the stream calls and close the stream upon executing a terminal operation.
- is caused by
-
HHH-13872 Loading...