alasdair-richardson opened a new issue, #14650: URL: https://github.com/apache/grails-core/issues/14650
AbstractHibernateCriteriaBuilder has a scroll method which just calls Criteria.scroll() on the underlying Criteria. To facilitate scrolling through a large data set I need to set the ScrollMode to ScrollMode.FORWARD_ONLY (which allows postgresql to load the rows in batches). However there is no method in the AbstractHibernateCriteriaBuilder to call the underlying Criteria.scroll(ScrollMode scrollMode) method. I had to subclass the Dialect but then that means I can never use another srcoll mode. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
