method

references_eager_loaded_tables?

references_eager_loaded_tables?()
private

No documentation available.

# File activerecord/lib/active_record/relation.rb, line 379
    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.joins(arel)) + [table.name, table.table_alias]).compact.map{ |t| t.downcase }.uniq
      (tables_in_string(to_sql) - joined_tables).any?
    end