On Thursday, March 15, 2018 at 8:12:36 AM UTC-7, [email protected] wrote: > > I understand. Let`s say I set rows_per_fetch to 1. and limit 100 to > dataset select. in log file I see only one query. It's weird. If I copy > paged_each method to my project – everything works as expected. I can see > limits and offsets.. I will try to switch to older version and test again >
Here's a thought: avoid looking at the SQL produced, and instead look at the memory usage of the process. paged_each is designed so large datasets can be processed with minimal memory usage. How that minimal memory usage is achieved is often dependent on the adapter. Your focus on the SQL being produced instead of the process's behavior is misguided. Thanks, Jeremy -- You received this message because you are subscribed to the Google Groups "sequel-talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/sequel-talk. For more options, visit https://groups.google.com/d/optout.
