lib/journey/resource/batch_where.rb in embark-journey-0.1.4 vs lib/journey/resource/batch_where.rb in embark-journey-0.1.5
- old
+ new
@@ -4,10 +4,9 @@
extend ActiveSupport::Concern
included do
def self.batch_where(clauses, batch_size=100)
-
total_count = count_multiple(clauses)
query_count = (total_count / batch_size.to_f).ceil.to_i
(0 ... query_count).to_a.map do |batch_index|