~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/generator/table.cc

  • Committer: Patrick Crews
  • Date: 2010-07-19 22:50:20 UTC
  • mto: (1663.1.2 rollup)
  • mto: This revision was merged to the branch mainline in revision 1664.
  • Revision ID: gleebix@gmail.com-20100719225020-6lhrjnkq3k9lyq0f
Fix of optimizer.test - needed cleanup at the end + updated .result file

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
Table::Table(Session &arg, const SchemaIdentifier &schema_identifier) :
33
33
  session(arg)
34
34
{
35
 
  plugin::StorageEngine::getIdentifiers(session, schema_identifier, table_names);
 
35
  plugin::StorageEngine::getTableIdentifiers(session, schema_identifier, table_names);
36
36
#if defined(DEBUG)
37
37
  random_shuffle(table_names.begin(), table_names.end());
38
38
#endif