instance method
build_batch_orders
Ruby on Rails 8.0.4
Since v7.1.6 PrivateSignature
build_batch_orders(cursor, order)
No documentation comment.
Parameters
-
cursorreq -
orderreq
Source
# 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
Defined in activerecord/lib/active_record/relation/batches.rb line 363
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::Batches