| This is for Hibernate Reactive: https://github.com/hibernate/hibernate-reactive/issues/120. The changes:
- extract code from `Loader#prepareQueryStatement` that binds a `PreparedStatement` into `protected` method named `#bindPreparedStatement`;
- change `private processResultSet( ResultSet, RowSelection, LimitHandler, boolean, SharedSessionContractImplementor)` to `protected preprocessResultSet(...)`, since it really does preprocessing. (`#processResultSet(ResultSet , QueryParameters, SharedSessionContractImplementor, boolean, ResultTransformer, int, List<AfterLoadAction>) actually does the processing).
|