method

build_batch_orders

build_batch_orders(cursor, order)
private

No documentation available.

# File activerecord/lib/active_record/relation/batches.rb, line 363
      def build_batch_orders(cursor, order)
        cursor.zip(Array(order)).map do |column, order_|
          [column, order_ || DEFAULT_ORDER]
        end
      end