~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/transaction_log/transaction_log.cc

  • Committer: Monty Taylor
  • Date: 2009-12-15 17:24:28 UTC
  • mto: (1241.12.9 out-of-tree)
  • mto: This revision was merged to the branch mainline in revision 1250.
  • Revision ID: mordred@inaugust.com-20091215172428-be1u7z1evow3nkob
Fixed a few plugins.

Show diffs side-by-side

added added

removed removed

Lines of Context:
530
530
  NULL
531
531
};
532
532
 
533
 
DRIZZLE_DECLARE_PLUGIN
534
 
{
535
 
  DRIZZLE_VERSION_ID,
536
 
  "transaction_log",
537
 
  "0.1",
538
 
  "Jay Pipes",
539
 
  N_("Transaction Message Log"),
540
 
  PLUGIN_LICENSE_GPL,
541
 
  init, /* Plugin Init */
542
 
  deinit, /* Plugin Deinit */
543
 
  NULL, /* status variables */
544
 
  system_variables, /* system variables */
545
 
  NULL    /* config options */
546
 
}
547
 
DRIZZLE_DECLARE_PLUGIN_END;
 
533
DRIZZLE_PLUGIN(init, deinit, NULL, system_variables)