1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

MDEV-26226 Change Maturity of plugins inet6 and s3 to stable

from gamma
This commit is contained in:
Sergei Golubchik
2021-07-28 22:48:39 +02:00
parent 07df0c948d
commit a49f5525bb
5 changed files with 3 additions and 5 deletions

View File

@@ -2,7 +2,6 @@
!include include/default_client.cnf !include include/default_client.cnf
[mysqld.1] [mysqld.1]
plugin-maturity = gamma
plugin-load-add=@ENV.HA_S3_SO plugin-load-add=@ENV.HA_S3_SO
s3=ON s3=ON
s3-host-name=@ENV.S3_HOST_NAME s3-host-name=@ENV.S3_HOST_NAME

View File

@@ -1,5 +1,4 @@
[mysqld.2] [mysqld.2]
plugin-maturity = gamma
plugin-load-add=@ENV.HA_S3_SO plugin-load-add=@ENV.HA_S3_SO
s3=ON s3=ON
s3-slave-ignore-updates=1 s3-slave-ignore-updates=1

View File

@@ -24,7 +24,7 @@ PLUGIN_TYPE DATA TYPE
PLUGIN_AUTHOR MariaDB Corporation PLUGIN_AUTHOR MariaDB Corporation
PLUGIN_DESCRIPTION Data type INET6 PLUGIN_DESCRIPTION Data type INET6
PLUGIN_LICENSE GPL PLUGIN_LICENSE GPL
PLUGIN_MATURITY Gamma PLUGIN_MATURITY Stable
PLUGIN_AUTH_VERSION 1.0 PLUGIN_AUTH_VERSION 1.0
# #
# End of 10.5 tests # End of 10.5 tests

View File

@@ -186,7 +186,7 @@ maria_declare_plugin(type_inet)
NULL, // Status variables NULL, // Status variables
NULL, // System variables NULL, // System variables
"1.0", // String version representation "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) MariaDB_FUNCTION_PLUGIN, // the plugin type (see include/mysql/plugin.h)

View File

@@ -1111,6 +1111,6 @@ maria_declare_plugin(s3)
status_variables, /* status variables */ status_variables, /* status variables */
system_variables, /* system variables */ system_variables, /* system variables */
"1.0", /* string version */ "1.0", /* string version */
MariaDB_PLUGIN_MATURITY_GAMMA /* maturity */ MariaDB_PLUGIN_MATURITY_STABLE/* maturity */
} }
maria_declare_plugin_end; maria_declare_plugin_end;