summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2022-04-01 12:32:16 +0200
committerSergei Golubchik <serg@mariadb.org>2022-04-02 17:19:43 +0200
commitd48774e0e042675d21de51659417cb738e41a0a7 (patch)
tree21a3e171c9b244ab41f592ac4d6ddbb5bb6b726f
parent32ab64c3909e63e78c05a6a3461928c254d67a27 (diff)
downloadmariadb-git-d48774e0e042675d21de51659417cb738e41a0a7.tar.gz
MDEV-27354 Change maturity of plugins
-rw-r--r--plugin/password_reuse_check/password_reuse_check.c2
-rw-r--r--plugin/type_uuid/mysql-test/type_uuid/func_uuid_plugin.result2
-rw-r--r--plugin/type_uuid/mysql-test/type_uuid/type_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 8373b64ea8a..ff0364ce007 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_BETA
+ MariaDB_PLUGIN_MATURITY_GAMMA
}
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 8c78be9c6c3..716f33134ca 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 Gamma
+PLUGIN_MATURITY Stable
PLUGIN_AUTH_VERSION 1.0
#
# End of 10.5 tests
diff --git a/plugin/type_uuid/mysql-test/type_uuid/type_uuid_plugin.result b/plugin/type_uuid/mysql-test/type_uuid/type_uuid_plugin.result
index d954832ef7f..a8fc3ca22a6 100644
--- a/plugin/type_uuid/mysql-test/type_uuid/type_uuid_plugin.result
+++ b/plugin/type_uuid/mysql-test/type_uuid/type_uuid_plugin.result
@@ -24,7 +24,7 @@ PLUGIN_TYPE DATA TYPE
PLUGIN_AUTHOR MariaDB Corporation
PLUGIN_DESCRIPTION Data type UUID
PLUGIN_LICENSE GPL
-PLUGIN_MATURITY Gamma
+PLUGIN_MATURITY Stable
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 62728799ae5..bd320a9a897 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_GAMMA // Maturity(see include/mysql/plugin.h)*/
+ MariaDB_PLUGIN_MATURITY_STABLE// 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_GAMMA // Maturity(see include/mysql/plugin.h)*/
+ MariaDB_PLUGIN_MATURITY_STABLE// 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_GAMMA // Maturity(see include/mysql/plugin.h)*/
+ MariaDB_PLUGIN_MATURITY_STABLE// Maturity(see include/mysql/plugin.h)*/
}
maria_declare_plugin_end;