~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/blackhole/ha_blackhole.cc

MergingĀ fromĀ Mark.

Show diffs side-by-side

added added

removed removed

Lines of Context:
306
306
  return 0;
307
307
}
308
308
 
309
 
struct st_mysql_storage_engine blackhole_storage_engine=
310
 
{ MYSQL_HANDLERTON_INTERFACE_VERSION };
311
 
 
312
309
mysql_declare_plugin(blackhole)
313
310
{
314
311
  MYSQL_STORAGE_ENGINE_PLUGIN,
315
 
  &blackhole_storage_engine,
316
312
  "BLACKHOLE",
 
313
  "1.0",
317
314
  "MySQL AB",
318
315
  "/dev/null storage engine (anything you write to it disappears)",
319
316
  PLUGIN_LICENSE_GPL,
320
317
  blackhole_init, /* Plugin Init */
321
318
  blackhole_fini, /* Plugin Deinit */
322
 
  0x0100 /* 1.0 */,
323
319
  NULL,                       /* status variables                */
324
320
  NULL,                       /* system variables                */
325
321
  NULL                        /* config options                  */