method
select_limited_ids_list
rails latest stable - Class:
ActiveRecord::Associations::ClassMethods
select_limited_ids_list(options, join_dependency)private
No documentation available.
# File activerecord/lib/active_record/associations.rb, line 1654
def select_limited_ids_list(options, join_dependency)
pk = columns_hash[primary_key]
connection.select_all(
construct_finder_sql_for_association_limiting(options, join_dependency),
"#{name} Load IDs For Limited Eager Loading"
).collect { |row| connection.quote(row[primary_key], pk) }.join(", ")
end