~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/show_tables.cc

  • Committer: Brian Aker
  • Date: 2010-03-31 05:53:34 UTC
  • Revision ID: brian@gaz-20100331055334-yqqmzlgqb2xq1p5b
Mass overhaul to use schema_identifier.

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
  else
53
53
  {
54
54
    Session *session= current_session;
55
 
    plugin::StorageEngine::getTableNames(*session, schema_name, table_names);
 
55
    SchemaIdentifier identifier(schema_name);
 
56
    plugin::StorageEngine::getTableNames(*session, identifier, table_names);
56
57
    table_iterator= table_names.begin();
57
58
    is_primed= true;
58
59
  }