~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_engine/schema.cc

  • Committer: Olaf van der Spek
  • Date: 2011-10-18 13:52:19 UTC
  • mto: This revision was merged to the branch mainline in revision 2443.
  • Revision ID: olafvdspek@gmail.com-20111018135219-vn5xhy8pvumotthk
Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
96
96
{
97
97
  mutex.lock_shared();
98
98
  BOOST_FOREACH(SchemaCache::reference iter, schema_cache)
99
 
    set_of_names.push_back(iter.second->name());
 
99
    set_of_names.push_back(identifier::Schema(iter.second->name()));
100
100
  mutex.unlock_shared();
101
101
}
102
102