mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
MDEV-28007 Deprecate Spider plugin variables regarding statistics persistence
Deprecate the following variables: * spider_store_last_crd * spider_store_last_sts * spider_load_crd_at_startup * spider_load_sts_at_startup
This commit is contained in:
@@ -3222,7 +3222,7 @@ static int spider_store_last_sts;
|
||||
static MYSQL_SYSVAR_INT(
|
||||
store_last_sts,
|
||||
spider_store_last_sts,
|
||||
PLUGIN_VAR_RQCMDARG,
|
||||
PLUGIN_VAR_RQCMDARG | PLUGIN_VAR_DEPRECATED,
|
||||
"Store last sts result into system table",
|
||||
NULL,
|
||||
spider_use_table_value_deprecated,
|
||||
@@ -3249,7 +3249,7 @@ static int spider_store_last_crd;
|
||||
static MYSQL_SYSVAR_INT(
|
||||
store_last_crd,
|
||||
spider_store_last_crd,
|
||||
PLUGIN_VAR_RQCMDARG,
|
||||
PLUGIN_VAR_RQCMDARG | PLUGIN_VAR_DEPRECATED,
|
||||
"Store last crd result into system table",
|
||||
NULL,
|
||||
spider_use_table_value_deprecated,
|
||||
@@ -3276,7 +3276,7 @@ static int spider_load_sts_at_startup;
|
||||
static MYSQL_SYSVAR_INT(
|
||||
load_sts_at_startup,
|
||||
spider_load_sts_at_startup,
|
||||
PLUGIN_VAR_RQCMDARG,
|
||||
PLUGIN_VAR_RQCMDARG | PLUGIN_VAR_DEPRECATED,
|
||||
"Load sts from system table at startup",
|
||||
NULL,
|
||||
spider_use_table_value_deprecated,
|
||||
@@ -3303,7 +3303,7 @@ static int spider_load_crd_at_startup;
|
||||
static MYSQL_SYSVAR_INT(
|
||||
load_crd_at_startup,
|
||||
spider_load_crd_at_startup,
|
||||
PLUGIN_VAR_RQCMDARG,
|
||||
PLUGIN_VAR_RQCMDARG | PLUGIN_VAR_DEPRECATED,
|
||||
"Load crd from system table at startup",
|
||||
NULL,
|
||||
spider_use_table_value_deprecated,
|
||||
|
Reference in New Issue
Block a user