~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/connection_id/connection_id.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:
76
76
  return 0;
77
77
}
78
78
 
79
 
static int finalize(plugin::Context &context)
80
 
{
81
 
   context.remove(connection_idudf);
82
 
   delete connection_idudf;
83
 
   return 0;
84
 
}
85
 
 
86
79
DRIZZLE_DECLARE_PLUGIN
87
80
{
88
81
  DRIZZLE_VERSION_ID,
92
85
  "Return the current connection_id",
93
86
  PLUGIN_LICENSE_GPL,
94
87
  initialize, /* Plugin Init */
95
 
  finalize,   /* Plugin Deinit */
96
88
  NULL,   /* system variables */
97
89
  NULL    /* config options */
98
90
}