~stewart/drizzle/embedded-innodb-rnd-read

« back to all changes in this revision

Viewing changes to plugin/show_schema_proto/show_schema_proto.cc

  • Committer: Stewart Smith
  • Date: 2010-04-01 04:50:06 UTC
  • mfrom: (1310.1.40)
  • Revision ID: stewart@flamingspork.com-20100401045006-z537qbrw1ojt6jdb
Merged embedded-innodb-write-row into embedded-innodb-rnd-read.

Show diffs side-by-side

added added

removed removed

Lines of Context:
82
82
  message::Schema proto;
83
83
 
84
84
 
85
 
  if (not plugin::StorageEngine::getSchemaDefinition(db, proto))
 
85
  SchemaIdentifier schema_identifier(db);
 
86
  if (not plugin::StorageEngine::getSchemaDefinition(schema_identifier, proto))
86
87
  {
87
88
    my_error(ER_BAD_DB_ERROR, MYF(0), db);
88
89
    return NULL;