~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/tableprototester/tableprototester.cc

  • Committer: Brian Aker
  • Date: 2010-03-19 00:16:13 UTC
  • mfrom: (1358.1.5 build)
  • Revision ID: brian@gaz-20100319001613-00rqrgybz9xxyssp
Merge more cleanup from TableIdentifier.

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
                    drizzled::TableIdentifier &identifier,
75
75
                    drizzled::message::Table&);
76
76
 
77
 
  int doDropTable(Session&, drizzled::TableIdentifier &identifier, const string &table_name);
 
77
  int doDropTable(Session&, drizzled::TableIdentifier &identifier);
78
78
 
79
79
  int doGetTableDefinition(Session& session,
80
80
                           const char* path,
142
142
}
143
143
 
144
144
 
145
 
int TableProtoTesterEngine::doDropTable(Session&, drizzled::TableIdentifier&, const string&)
 
145
int TableProtoTesterEngine::doDropTable(Session&, drizzled::TableIdentifier&)
146
146
{
147
147
  return EPERM;
148
148
}
166
166
 
167
167
}
168
168
int TableProtoTesterEngine::doGetTableDefinition(Session&,
169
 
                                          const char* path,
170
 
                                          const char *,
171
 
                                          const char *,
172
 
                                          const bool,
173
 
                                          drizzled::TableIdentifier &,
174
 
                                          drizzled::message::Table &table_proto)
 
169
                                                 const char* path,
 
170
                                                 const char *,
 
171
                                                 const char *,
 
172
                                                 const bool,
 
173
                                                 drizzled::TableIdentifier &,
 
174
                                                 drizzled::message::Table &table_proto)
175
175
{
176
176
  if (strcmp(path, "./test/t1") == 0)
177
177
  {