~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/generator/all_tables.cc

  • Committer: Brian Aker
  • Date: 2010-07-20 02:17:09 UTC
  • mto: This revision was merged to the branch mainline in revision 1665.
  • Revision ID: brian@gaz-20100720021709-1yeehbw8d5vbtmlc
Removed identifier bit

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
bool AllTables::table_setup()
40
40
{
41
41
  table_names.clear();
42
 
  plugin::StorageEngine::getTableIdentifiers(session, *schema_ptr, table_names);
 
42
  plugin::StorageEngine::getIdentifiers(session, *schema_ptr, table_names);
43
43
#if defined(DEBUG)
44
44
  random_shuffle(table_names.begin(), table_names.end());
45
45
#endif