mirror of
https://github.com/google/nomulus
synced 2026-04-14 21:47:26 +00:00
* Make SQL queries return scrollable results With Postgresql, we must override the default fetchSize (0) to enable scrollable result sets. Previously we only did this in QueryComposer. In this change we enable scrollable results for all queries by default. We also provide a helper function (JpaTransactionManager.setQueryFetchSize) that can override the default.