~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/locking/global.cc

  • Committer: Brian Aker
  • Date: 2011-04-12 16:33:34 UTC
  • mfrom: (2272.1.3 cache)
  • Revision ID: brian@sccc-67-111-115-252.smartcity.com-20110412163334-cpk0qmwpqlroicb9
MergeĀ inĀ Olaf

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
#include <drizzled/plugin/storage_engine.h>
92
92
#include <drizzled/util/test.h>
93
93
#include <drizzled/open_tables_state.h>
 
94
#include <drizzled/table/cache.h>
94
95
 
95
96
#include <set>
96
97
#include <vector>
656
657
  table_list->table= reinterpret_cast<Table *>(table);
657
658
 
658
659
  /* Return 1 if table is in use */
659
 
  return(test(table::Cache::singleton().removeTable(this, identifier, RTFC_NO_FLAG)));
 
660
  return(test(table::Cache::singleton().removeTable(*this, identifier, RTFC_NO_FLAG)));
660
661
}
661
662
 
662
663