~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/show_dictionary/show_indexes.cc

Merge with trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
    table_name.append(select->getShowTable().c_str());
55
55
    identifier::Table identifier(select->getShowSchema().c_str(), select->getShowTable().c_str());
56
56
 
57
 
    is_tables_primed= plugin::StorageEngine::getTableDefinition(getSession(),
58
 
                                                                identifier,
59
 
                                                                table_proto);
 
57
    table_proto= plugin::StorageEngine::getTableMessage(getSession(), identifier);
 
58
 
 
59
    if (table_proto)
 
60
      is_tables_primed= true;
60
61
  }
61
62
}
62
63