From d48774e0e042675d21de51659417cb738e41a0a7 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Fri, 1 Apr 2022 12:32:16 +0200 Subject: MDEV-27354 Change maturity of plugins --- plugin/password_reuse_check/password_reuse_check.c | 2 +- plugin/type_uuid/mysql-test/type_uuid/func_uuid_plugin.result | 2 +- plugin/type_uuid/mysql-test/type_uuid/type_uuid_plugin.result | 2 +- plugin/type_uuid/plugin.cc | 6 +++--- 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; -- cgit v1.2.1