~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/tableprototester/tableprototester.cc

  • Committer: Brian Aker
  • Date: 2011-01-12 02:29:00 UTC
  • mfrom: (2068.7.5 session-fix)
  • mto: This revision was merged to the branch mainline in revision 2077.
  • Revision ID: brian@gir-3-20110112022900-ash0in3luysxzpvl
MergeĀ inĀ trunk.

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)