~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/tableprototester/tableprototester.cc

  • Committer: Monty Taylor
  • Date: 2010-03-06 02:08:13 UTC
  • mto: This revision was merged to the branch mainline in revision 1381.
  • Revision ID: mordred@inaugust.com-20100306020813-c37d0b39004nl1zf
Remove plugin deinit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
267
267
  return 0;
268
268
}
269
269
 
270
 
static int tableprototester_fini(drizzled::plugin::Context &context)
271
 
{
272
 
  context.remove(tableprototester_engine);
273
 
  delete tableprototester_engine;
274
 
 
275
 
  return 0;
276
 
}
277
 
 
278
270
DRIZZLE_DECLARE_PLUGIN
279
271
{
280
272
  DRIZZLE_VERSION_ID,
284
276
  "Used to test rest of server with various table proto messages",
285
277
  PLUGIN_LICENSE_GPL,
286
278
  tableprototester_init,     /* Plugin Init */
287
 
  tableprototester_fini,     /* Plugin Deinit */
288
279
  NULL,               /* system variables */
289
280
  NULL                /* config options   */
290
281
}