~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 04:12:14 UTC
  • mfrom: (1395.1.18 build)
  • Revision ID: brian@gaz-20100327041214-2pm5eay51312xjvq
Merge (fixes known issues in ALTER TABLE not resetting correctly DFE).

Show diffs side-by-side

added added

removed removed

Lines of Context:
92
92
  table_proto.Clear();
93
93
  {
94
94
    Session *session= current_session;
95
 
    string path;
96
 
    build_table_filename(path, schema_name().c_str(), table_name().c_str(), false);
97
95
    TableIdentifier identifier(schema_name().c_str(), table_name().c_str());
98
96
    plugin::StorageEngine::getTableDefinition(*session,
99
97
                                             identifier,
205
203
  */
206
204
 
207
205
  /* TABLE_SCHEMA */
208
 
  push(schema_name());
 
206
  push(table_proto.schema());
209
207
 
210
208
  /* TABLE_NAME */
211
 
  push(table_name());
 
209
  push(table_proto.name());
212
210
 
213
211
  /* TABLE_TYPE */
214
212
  {