~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_list.cc

  • Committer: Brian Aker
  • Date: 2010-06-15 13:37:26 UTC
  • Revision ID: brian@gaz-20100615133726-160z0ql8gxi8s3rg
This is a rollup set of patches for modifications to TableIdentifier to have
a getKey() which is now used for open_cache and table_share_def cache. This
also includes additional unittests on TableIdentifier, and makes use of some
cleanup, though not perfect, to TableShare for its contructors.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 
37
37
uint32_t TableList::create_table_def_key(char *key)
38
38
{
39
 
  return TableShare::createKey(key, db, table_name);
 
39
  return TableIdentifier::createKey(key, db, table_name);
40
40
}
41
41
 
42
42
bool TableList::set_insert_values(memory::Root *mem_root)