~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/tableprototester/tableprototester.cc

  • Committer: Brian Aker
  • Date: 2011-01-11 05:13:54 UTC
  • mto: (2075.2.1 drizzle)
  • mto: This revision was merged to the branch mainline in revision 2076.
  • Revision ID: brian@tangent.org-20110111051354-m8ba2xvtjfldrler
First pass through error correction in SE interface for drop table.

Show diffs side-by-side

added added

removed removed

Lines of Context:
95
95
 
96
96
  int doRenameTable(Session&, const drizzled::TableIdentifier&, const drizzled::TableIdentifier&)
97
97
  {
98
 
    return EPERM;
 
98
    return HA_ERR_NO_SUCH_TABLE;
99
99
  }
100
100
 
101
101
  void doGetTableIdentifiers(drizzled::CachedDirectory &directory,
153
153
 
154
154
int TableProtoTesterEngine::doDropTable(Session&, const drizzled::TableIdentifier&)
155
155
{
156
 
  return EPERM;
 
156
  return HA_ERR_NO_SUCH_TABLE;
157
157
}
158
158
 
159
159
static void fill_table1(message::Table &table)