class ActiveRecord::ConnectionAdapters::SchemaCache

def add(table_name)

Add internal cache for table with +table_name+.
def add(table_name)
  if data_source_exists?(table_name)
    primary_keys(table_name)
    columns(table_name)
    columns_hash(table_name)
    indexes(table_name)
  end
end