summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2021-12-20 17:23:32 +0100
committerSergei Golubchik <serg@mariadb.org>2021-12-21 13:56:30 +0100
commitdb0ea46eabd0f09049c5cb19204f95338e870f5d (patch)
tree1c8881f6afa69136230a5192b9944b74b8c21efe
parent92a4e76a2c1c15fb44dc0cb05e06d5aa408a8e35 (diff)
downloadmariadb-git-db0ea46eabd0f09049c5cb19204f95338e870f5d.tar.gz
MDEV-27261 Change maturity of plugins for 10.7 GA
-rw-r--r--plugin/password_reuse_check/password_reuse_check.c2
-rw-r--r--plugin/type_mysql_json/type.cc2
-rw-r--r--plugin/type_uuid/mysql-test/type_uuid/func_uuid_plugin.result2
-rw-r--r--plugin/type_uuid/plugin.cc6
4 files changed, 6 insertions, 6 deletions
diff --git a/plugin/password_reuse_check/password_reuse_check.c b/plugin/password_reuse_check/password_reuse_check.c
index f823e7f098b..8373b64ea8a 100644
--- a/plugin/password_reuse_check/password_reuse_check.c
+++ b/plugin/password_reuse_check/password_reuse_check.c
@@ -236,6 +236,6 @@ maria_declare_plugin(password_reuse_check)
NULL,
sysvars,
"1.0",
- MariaDB_PLUGIN_MATURITY_ALPHA
+ MariaDB_PLUGIN_MATURITY_BETA
}
maria_declare_plugin_end;
diff --git a/plugin/type_mysql_json/type.cc b/plugin/type_mysql_json/type.cc
index 8b79e039106..d2d49b20229 100644
--- a/plugin/type_mysql_json/type.cc
+++ b/plugin/type_mysql_json/type.cc
@@ -211,6 +211,6 @@ maria_declare_plugin(type_mysql_json)
NULL,
NULL,
"0.1",
- MariaDB_PLUGIN_MATURITY_ALPHA
+ MariaDB_PLUGIN_MATURITY_BETA
}
maria_declare_plugin_end;
diff --git a/plugin/type_uuid/mysql-test/type_uuid/func_uuid_plugin.result b/plugin/type_uuid/mysql-test/type_uuid/func_uuid_plugin.result
index ac7b21b1719..8c78be9c6c3 100644
--- a/plugin/type_uuid/mysql-test/type_uuid/func_uuid_plugin.result
+++ b/plugin/type_uuid/mysql-test/type_uuid/func_uuid_plugin.result
@@ -28,7 +28,7 @@ PLUGIN_TYPE FUNCTION
PLUGIN_AUTHOR MariaDB Corporation
PLUGIN_DESCRIPTION Function UUID()
PLUGIN_LICENSE GPL
-PLUGIN_MATURITY Beta
+PLUGIN_MATURITY Gamma
PLUGIN_AUTH_VERSION 1.0
#
# End of 10.5 tests
diff --git a/plugin/type_uuid/plugin.cc b/plugin/type_uuid/plugin.cc
index 6e7df8897fb..62728799ae5 100644
--- a/plugin/type_uuid/plugin.cc
+++ b/plugin/type_uuid/plugin.cc
@@ -87,7 +87,7 @@ maria_declare_plugin(type_uuid)
NULL, // Status variables
NULL, // System variables
"1.0", // String version representation
- MariaDB_PLUGIN_MATURITY_BETA // Maturity(see include/mysql/plugin.h)*/
+ MariaDB_PLUGIN_MATURITY_GAMMA // Maturity(see include/mysql/plugin.h)*/
},
{
MariaDB_FUNCTION_PLUGIN, // the plugin type (see include/mysql/plugin.h)
@@ -102,7 +102,7 @@ maria_declare_plugin(type_uuid)
NULL, // Status variables
NULL, // System variables
"1.0", // String version representation
- MariaDB_PLUGIN_MATURITY_BETA // Maturity(see include/mysql/plugin.h)*/
+ MariaDB_PLUGIN_MATURITY_GAMMA // Maturity(see include/mysql/plugin.h)*/
},
{
MariaDB_FUNCTION_PLUGIN, // the plugin type (see include/mysql/plugin.h)
@@ -117,6 +117,6 @@ maria_declare_plugin(type_uuid)
NULL, // Status variables
NULL, // System variables
"1.0", // String version representation
- MariaDB_PLUGIN_MATURITY_BETA // Maturity(see include/mysql/plugin.h)*/
+ MariaDB_PLUGIN_MATURITY_GAMMA // Maturity(see include/mysql/plugin.h)*/
}
maria_declare_plugin_end;