method
include_eager_order?
include_eager_order?(options)
private
Hide source
# File activerecord/lib/active_record/associations.rb, line 1185 def include_eager_order?(options) order = options[:order] return false unless order order.scan(/(\w+)\.\w+/).flatten.any? do |order_table_name| order_table_name != table_name end end


