Commit 8d8784e9 authored by Vasil Dimov's avatar Vasil Dimov

Use plugin_author also for the InnoDB SE plugin

Move the const variable plugin_author to a common header file that is
being included by both ha_innodb.cc and i_s.cc
parent 17621e72
...@@ -11367,7 +11367,7 @@ mysql_declare_plugin(innobase) ...@@ -11367,7 +11367,7 @@ mysql_declare_plugin(innobase)
MYSQL_STORAGE_ENGINE_PLUGIN, MYSQL_STORAGE_ENGINE_PLUGIN,
&innobase_storage_engine, &innobase_storage_engine,
innobase_hton_name, innobase_hton_name,
"Innobase Oy", plugin_author,
"Supports transactions, row-level locking, and foreign keys", "Supports transactions, row-level locking, and foreign keys",
PLUGIN_LICENSE_GPL, PLUGIN_LICENSE_GPL,
innobase_init, /* Plugin Init */ innobase_init, /* Plugin Init */
......
...@@ -47,8 +47,6 @@ extern "C" { ...@@ -47,8 +47,6 @@ extern "C" {
#include "trx0trx.h" /* for TRX_QUE_STATE_STR_MAX_LEN */ #include "trx0trx.h" /* for TRX_QUE_STATE_STR_MAX_LEN */
} }
static const char plugin_author[] = "Oracle Corporation";
#define OK(expr) \ #define OK(expr) \
if ((expr) != 0) { \ if ((expr) != 0) { \
DBUG_RETURN(1); \ DBUG_RETURN(1); \
......
...@@ -26,6 +26,8 @@ Created July 18, 2007 Vasil Dimov ...@@ -26,6 +26,8 @@ Created July 18, 2007 Vasil Dimov
#ifndef i_s_h #ifndef i_s_h
#define i_s_h #define i_s_h
const char plugin_author[] = "Oracle Corporation";
extern struct st_mysql_plugin i_s_innodb_trx; extern struct st_mysql_plugin i_s_innodb_trx;
extern struct st_mysql_plugin i_s_innodb_locks; extern struct st_mysql_plugin i_s_innodb_locks;
extern struct st_mysql_plugin i_s_innodb_lock_waits; extern struct st_mysql_plugin i_s_innodb_lock_waits;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment