~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_engine/schema.cc

  • Committer: Brian Aker
  • Date: 2011-02-27 19:43:52 UTC
  • mfrom: (2192.4.9 iter)
  • Revision ID: brian@tangent.org-20110227194352-w48j3ey8nhonecsd
MergeĀ inĀ find_ptr

Show diffs side-by-side

added added

removed removed

Lines of Context:
110
110
         iter != schema_cache.end();
111
111
         iter++)
112
112
    {
113
 
      set_of_names.push_back(identifier::Schema((*iter).second->name()));
 
113
      set_of_names.push_back(identifier::Schema(iter->second->name()));
114
114
    }
115
115
  }
116
116
  mutex.unlock_shared();
124
124
  if (iter != schema_cache.end())
125
125
  {
126
126
    drizzled::message::schema::shared_ptr schema_message;
127
 
    schema_message= (*iter).second;
 
127
    schema_message= iter->second;
128
128
    mutex.unlock_shared();
129
129
 
130
130
    return schema_message;