diff options
author | Sergei Golubchik <serg@mariadb.org> | 2020-06-22 13:21:18 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2020-07-04 01:44:47 +0200 |
commit | 4876651e0f4b2ee0e16b5f86c7f65464e6ac6906 (patch) | |
tree | 51da9f01c69377d4f716de2686809f9fb5af4995 /storage/blackhole | |
parent | 7c2ba9e9d71c5fb494e262a1b6d1ebf992db282e (diff) | |
download | mariadb-git-4876651e0f4b2ee0e16b5f86c7f65464e6ac6906.tar.gz |
remove mysql_declare_plugin declaration from some plugins
Diffstat (limited to 'storage/blackhole')
-rw-r--r-- | storage/blackhole/ha_blackhole.cc | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/storage/blackhole/ha_blackhole.cc b/storage/blackhole/ha_blackhole.cc index 82ac9123d3b..c4eba8b4171 100644 --- a/storage/blackhole/ha_blackhole.cc +++ b/storage/blackhole/ha_blackhole.cc @@ -423,23 +423,6 @@ static int blackhole_fini(void *p) struct st_mysql_storage_engine blackhole_storage_engine= { MYSQL_HANDLERTON_INTERFACE_VERSION }; -mysql_declare_plugin(blackhole) -{ - MYSQL_STORAGE_ENGINE_PLUGIN, - &blackhole_storage_engine, - "BLACKHOLE", - "MySQL AB", - "/dev/null storage engine (anything you write to it disappears)", - PLUGIN_LICENSE_GPL, - blackhole_init, /* Plugin Init */ - blackhole_fini, /* Plugin Deinit */ - 0x0100 /* 1.0 */, - NULL, /* status variables */ - NULL, /* system variables */ - NULL, /* config options */ - 0, /* flags */ -} -mysql_declare_plugin_end; maria_declare_plugin(blackhole) { MYSQL_STORAGE_ENGINE_PLUGIN, |