~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/logging_query/logging_query.cc

Merged in some naming things.

Show diffs side-by-side

added added

removed removed

Lines of Context:
398
398
  UINT32_MAX, /* max */
399
399
  0 /* blksiz */);
400
400
 
401
 
static struct st_mysql_sys_var* logging_query_system_variables[]= {
 
401
static drizzle_sys_var* logging_query_system_variables[]= {
402
402
  DRIZZLE_SYSVAR(enable),
403
403
  DRIZZLE_SYSVAR(filename),
404
404
  DRIZZLE_SYSVAR(pcre),
408
408
  NULL
409
409
};
410
410
 
411
 
drizzle_declare_plugin
 
411
DRIZZLE_DECLARE_PLUGIN
412
412
{
413
413
  "logging_query",
414
414
  "0.2",
421
421
  logging_query_system_variables,
422
422
  NULL
423
423
}
424
 
drizzle_declare_plugin_end;
 
424
DRIZZLE_DECLARE_PLUGIN_END;