method

apply_limits

Importance_0
v7.1.3.4 - Show latest stable - 0 notes - Class: ActiveRecord::Batches
apply_limits(relation, start, finish, batch_orders) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/relation/batches.rb, line 284
      def apply_limits(relation, start, finish, batch_orders)
        relation = apply_start_limit(relation, start, batch_orders) if start
        relation = apply_finish_limit(relation, finish, batch_orders) if finish
        relation
      end
Register or log in to add new notes.