~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/table_cache_dictionary/table_cache.cc

updating

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
       iter != table::getCache().end();
52
52
       iter++)
53
53
   {
54
 
    table_list.push_back((*iter).second);
 
54
    table_list.push_back(iter->second);
55
55
  }
56
56
  std::sort(table_list.begin(), table_list.end(), Table::compare);
57
57
}