~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/tables.cc

  • Committer: Brian Aker
  • Date: 2010-03-27 21:51:11 UTC
  • Revision ID: brian@gaz-20100327215111-d93rvblau715pxfi
doCreateTable() was still taking a pointer instead of a session reference.

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
     return false;
82
82
 
83
83
    table_names.clear();
84
 
    plugin::StorageEngine::getTableNames(schema_name(), table_names);
 
84
    Session *session= current_session;
 
85
    plugin::StorageEngine::getTableNames(*session, schema_name(), table_names);
85
86
    table_iterator= table_names.begin();
86
87
    is_tables_primed= true;
87
88
  }