diff options
author | Sergei Golubchik <sergii@pisem.net> | 2012-03-13 13:31:21 +0100 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2012-03-13 13:31:21 +0100 |
commit | 1cbc3790d37cab5a2309b055e35945099b48d4c2 (patch) | |
tree | acbc6a30fd3141f80463141cf005adec5ebe47af /storage/sphinx | |
parent | 262a2ab59d5bf3974efc3758555919576b9bb2bf (diff) | |
download | mariadb-git-1cbc3790d37cab5a2309b055e35945099b48d4c2.tar.gz |
fix SphinxSE version as reported in I_S.PLUGINS
Diffstat (limited to 'storage/sphinx')
-rw-r--r-- | storage/sphinx/ha_sphinx.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/storage/sphinx/ha_sphinx.cc b/storage/sphinx/ha_sphinx.cc index 0a33a393b7a..4d6b729196c 100644 --- a/storage/sphinx/ha_sphinx.cc +++ b/storage/sphinx/ha_sphinx.cc @@ -627,7 +627,7 @@ bool sphinx_show_status ( THD * thd ); ////////////////////////////////////////////////////////////////////////////// static const char sphinx_hton_name[] = "SPHINX"; -static const char sphinx_hton_comment[] = "Sphinx storage engine " SPHINXSE_VERSION; +static const char sphinx_hton_comment[] = "Sphinx storage engine"; #if MYSQL_VERSION_ID<50100 handlerton sphinx_hton = @@ -3612,10 +3612,10 @@ maria_declare_plugin(sphinx) PLUGIN_LICENSE_GPL, sphinx_init_func, // Plugin Init sphinx_done_func, // Plugin Deinit - 0x0001, // 0.1 + 0x0200, // 2.0 sphinx_status_vars, NULL, - "0.1", // string version + SPHINXSE_VERSION, // string version MariaDB_PLUGIN_MATURITY_EXPERIMENTAL } maria_declare_plugin_end; |