You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
Disable the ColumnStore cache plugin.
This commit is contained in:
@ -1609,6 +1609,7 @@ int ha_mcs_cache::end_bulk_insert()
|
|||||||
ha_mcs_cache Plugin code
|
ha_mcs_cache Plugin code
|
||||||
******************************************************************************/
|
******************************************************************************/
|
||||||
|
|
||||||
|
#if 0
|
||||||
static handler *ha_mcs_cache_create_handler(handlerton *hton,
|
static handler *ha_mcs_cache_create_handler(handlerton *hton,
|
||||||
TABLE_SHARE *table,
|
TABLE_SHARE *table,
|
||||||
MEM_ROOT *mem_root)
|
MEM_ROOT *mem_root)
|
||||||
@ -1663,6 +1664,7 @@ static int ha_mcs_cache_deinit(void *p)
|
|||||||
|
|
||||||
struct st_mysql_storage_engine ha_mcs_cache_storage_engine=
|
struct st_mysql_storage_engine ha_mcs_cache_storage_engine=
|
||||||
{ MYSQL_HANDLERTON_INTERFACE_VERSION };
|
{ MYSQL_HANDLERTON_INTERFACE_VERSION };
|
||||||
|
#endif
|
||||||
|
|
||||||
struct st_mysql_storage_engine columnstore_storage_engine =
|
struct st_mysql_storage_engine columnstore_storage_engine =
|
||||||
{ MYSQL_HANDLERTON_INTERFACE_VERSION };
|
{ MYSQL_HANDLERTON_INTERFACE_VERSION };
|
||||||
@ -1687,21 +1689,23 @@ maria_declare_plugin(columnstore)
|
|||||||
MCSVERSION, /* string version */
|
MCSVERSION, /* string version */
|
||||||
COLUMNSTORE_MATURITY /* maturity */
|
COLUMNSTORE_MATURITY /* maturity */
|
||||||
},
|
},
|
||||||
//{
|
#if 0
|
||||||
// MYSQL_STORAGE_ENGINE_PLUGIN,
|
{
|
||||||
// &ha_mcs_cache_storage_engine,
|
MYSQL_STORAGE_ENGINE_PLUGIN,
|
||||||
// "Columnstore_cache",
|
&ha_mcs_cache_storage_engine,
|
||||||
// "MariaDB Corporation AB",
|
"Columnstore_cache",
|
||||||
// "Insert cache for ColumnStore",
|
"MariaDB Corporation AB",
|
||||||
// PLUGIN_LICENSE_GPL,
|
"Insert cache for ColumnStore",
|
||||||
// ha_mcs_cache_init, /* Plugin Init */
|
PLUGIN_LICENSE_GPL,
|
||||||
// ha_mcs_cache_deinit, /* Plugin Deinit */
|
ha_mcs_cache_init, /* Plugin Init */
|
||||||
// MCSVERSIONHEX,
|
ha_mcs_cache_deinit, /* Plugin Deinit */
|
||||||
// NULL, /* status variables */
|
MCSVERSIONHEX,
|
||||||
// NULL, /* system variables */
|
NULL, /* status variables */
|
||||||
// MCSVERSION, /* string version */
|
NULL, /* system variables */
|
||||||
// MariaDB_PLUGIN_MATURITY_ALPHA /* maturity */
|
MCSVERSION, /* string version */
|
||||||
//},
|
MariaDB_PLUGIN_MATURITY_ALPHA /* maturity */
|
||||||
|
},
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
MYSQL_INFORMATION_SCHEMA_PLUGIN,
|
MYSQL_INFORMATION_SCHEMA_PLUGIN,
|
||||||
&is_columnstore_plugin_version,
|
&is_columnstore_plugin_version,
|
||||||
|
Reference in New Issue
Block a user