method
get_records
v5.0.0.1 -
Show latest stable
- Class:
ActiveRecord::Associations::SingularAssociation
get_records()private
No documentation available.
# File activerecord/lib/active_record/associations/singular_association.rb, line 47
def get_records
return scope.limit(1).records if skip_statement_cache?
conn = klass.connection
sc = reflection.association_scope_cache(conn, owner) do
StatementCache.create(conn) { |params|
as = AssociationScope.create { params.bind }
target_scope.merge(as.scope(self, conn)).limit(1)
}
end
binds = AssociationScope.get_bind_values(owner, reflection.chain)
sc.execute binds, klass, klass.connection
end