Skip to content

Commit

Permalink
MDEV-26226 Change Maturity of plugins inet6 and s3 to stable
Browse files Browse the repository at this point in the history
from gamma
  • Loading branch information
vuvova committed Jul 28, 2021
1 parent 07df0c9 commit a49f552
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion mysql-test/suite/s3/my.cnf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
!include include/default_client.cnf

[mysqld.1]
plugin-maturity = gamma
plugin-load-add=@ENV.HA_S3_SO
s3=ON
s3-host-name=@ENV.S3_HOST_NAME
Expand Down
1 change: 0 additions & 1 deletion mysql-test/suite/s3/slave.cnf
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
[mysqld.2]
plugin-maturity = gamma
plugin-load-add=@ENV.HA_S3_SO
s3=ON
s3-slave-ignore-updates=1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ PLUGIN_TYPE DATA TYPE
PLUGIN_AUTHOR MariaDB Corporation
PLUGIN_DESCRIPTION Data type INET6
PLUGIN_LICENSE GPL
PLUGIN_MATURITY Gamma
PLUGIN_MATURITY Stable
PLUGIN_AUTH_VERSION 1.0
#
# End of 10.5 tests
Expand Down
2 changes: 1 addition & 1 deletion plugin/type_inet/plugin.cc
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ maria_declare_plugin(type_inet)
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)
Expand Down
2 changes: 1 addition & 1 deletion storage/maria/ha_s3.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1111,6 +1111,6 @@ maria_declare_plugin(s3)
status_variables, /* status variables */
system_variables, /* system variables */
"1.0", /* string version */
MariaDB_PLUGIN_MATURITY_GAMMA /* maturity */
MariaDB_PLUGIN_MATURITY_STABLE/* maturity */
}
maria_declare_plugin_end;

0 comments on commit a49f552

Please sign in to comment.