method
tables_to_cache
v8.1.1 -
Show latest stable
- Class:
ActiveRecord::ConnectionAdapters::SchemaCache
tables_to_cache(pool)private
No documentation available.
# File activerecord/lib/active_record/connection_adapters/schema_cache.rb, line 428
def tables_to_cache(pool)
pool.with_connection do |connection|
connection.data_sources.reject do |table|
ignored_table?(table)
end
end
end