~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.cc

  • Committer: Lee Bieber
  • Date: 2011-03-01 01:51:22 UTC
  • mfrom: (2209.1.3 build)
  • Revision ID: kalebral@gmail.com-20110301015122-jse47000xs6xp062
Merge Patrick - 726914: Need to update dbqp randgen config files for slave_plugin 
Merge Olaf - fix EOL
Merge Patrick - 725236: randgen transaction log tests need to be implemented using dbqp / randgen

Show diffs side-by-side

added added

removed removed

Lines of Context:
844
844
 
845
845
  boost_unique_lock_t scope_lock(table::Cache::singleton().mutex()); /* Obtain a name lock even though table is not in cache (like for create table)  */
846
846
 
847
 
  table::CacheMap::iterator iter;
848
 
 
849
 
  iter= table::getCache().find(key);
850
 
 
851
 
  if (iter != table::getCache().end())
 
847
  if (find_ptr(table::getCache(), key))
852
848
  {
853
849
    *table= 0;
854
850
    return false;