On Sep 8, 2:30 am, badnaam <[email protected]> wrote: > How can I include a :select clause with find_in_batches. The following > throws an error " Mysql::Error: Unknown column 'users.id' in 'field > list': .
If you want joins use :joins rather than :include Fred > > Post.find_in_batches(:batch_size => 100, :select => "users.id, > users.name, categories.name, posts.id", :include => > [:user, :category]) do |group| > #stuff with group > end -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

