instance method
references_eager_loaded_tables?
Ruby on Rails 3.0.20
Since v3.0.20 Private — implementation detail, not part of the public APISignature
references_eager_loaded_tables?()
No documentation comment.
Source
# File activerecord/lib/active_record/relation.rb, line 380
def references_eager_loaded_tables?
# always convert table names to downcase as in Oracle quoted table names are in uppercase
joined_tables = (tables_in_string(arel.join_sql) + [table.name, table.table_alias]).compact.map{ |t| t.downcase }.uniq
(tables_in_string(to_sql) - joined_tables).any?
end
Defined in activerecord/lib/active_record/relation.rb line 380
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::Relation