Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
61fd38a1
Commit
61fd38a1
authored
Sep 05, 2016
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update plugin maturities
parent
362ad94b
Changes
15
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
83 additions
and
83 deletions
+83
-83
mysql-test/suite/plugins/r/cracklib_password_check.result
mysql-test/suite/plugins/r/cracklib_password_check.result
+1
-1
mysql-test/suite/plugins/r/simple_password_check.result
mysql-test/suite/plugins/r/simple_password_check.result
+1
-1
plugin/aws_key_management/aws_key_management_plugin.cc
plugin/aws_key_management/aws_key_management_plugin.cc
+1
-1
plugin/cracklib_password_check/cracklib_password_check.c
plugin/cracklib_password_check/cracklib_password_check.c
+1
-1
plugin/file_key_management/file_key_management_plugin.cc
plugin/file_key_management/file_key_management_plugin.cc
+1
-1
plugin/query_response_time/mysql-test/query_response_time/basic.result
...response_time/mysql-test/query_response_time/basic.result
+1
-1
plugin/query_response_time/plugin.cc
plugin/query_response_time/plugin.cc
+1
-1
plugin/simple_password_check/simple_password_check.c
plugin/simple_password_check/simple_password_check.c
+1
-1
plugin/userstat/userstat.cc
plugin/userstat/userstat.cc
+2
-2
plugin/wsrep_info/plugin.cc
plugin/wsrep_info/plugin.cc
+2
-2
storage/innobase/handler/ha_innodb.cc
storage/innobase/handler/ha_innodb.cc
+1
-1
storage/innobase/handler/i_s.cc
storage/innobase/handler/i_s.cc
+32
-32
storage/xtradb/handler/ha_innodb.cc
storage/xtradb/handler/ha_innodb.cc
+1
-1
storage/xtradb/handler/i_s.cc
storage/xtradb/handler/i_s.cc
+34
-34
storage/xtradb/handler/xtradb_i_s.cc
storage/xtradb/handler/xtradb_i_s.cc
+3
-3
No files found.
mysql-test/suite/plugins/r/cracklib_password_check.result
View file @
61fd38a1
...
...
@@ -11,7 +11,7 @@ PLUGIN_AUTHOR Sergei Golubchik
PLUGIN_DESCRIPTION Password validation via CrackLib
PLUGIN_LICENSE GPL
LOAD_OPTION ON
PLUGIN_MATURITY
Gamma
PLUGIN_MATURITY
Stable
PLUGIN_AUTH_VERSION 1.0
grant select on *.* to foocar identified by 'foocar';
ERROR HY000: Your password does not satisfy the current policy requirements
...
...
mysql-test/suite/plugins/r/simple_password_check.result
View file @
61fd38a1
...
...
@@ -11,7 +11,7 @@ PLUGIN_AUTHOR Sergei Golubchik
PLUGIN_DESCRIPTION Simple password strength checks
PLUGIN_LICENSE GPL
LOAD_OPTION ON
PLUGIN_MATURITY
Gamma
PLUGIN_MATURITY
Stable
PLUGIN_AUTH_VERSION 1.0
select * from information_schema.system_variables where variable_name like 'simple_password_check%' order by 1;
VARIABLE_NAME SIMPLE_PASSWORD_CHECK_DIGITS
...
...
plugin/aws_key_management/aws_key_management_plugin.cc
View file @
61fd38a1
...
...
@@ -582,6 +582,6 @@ maria_declare_plugin(aws_key_management)
NULL
,
settings
,
"1.0"
,
MariaDB_PLUGIN_MATURITY_
EXPERIMENTAL
MariaDB_PLUGIN_MATURITY_
BETA
}
maria_declare_plugin_end
;
plugin/cracklib_password_check/cracklib_password_check.c
View file @
61fd38a1
...
...
@@ -78,6 +78,6 @@ maria_declare_plugin(cracklib_password_check)
NULL
,
sysvars
,
"1.0"
,
MariaDB_PLUGIN_MATURITY_
GAMMA
,
MariaDB_PLUGIN_MATURITY_
STABLE
}
maria_declare_plugin_end
;
plugin/file_key_management/file_key_management_plugin.cc
View file @
61fd38a1
...
...
@@ -186,6 +186,6 @@ maria_declare_plugin(file_key_management)
NULL
,
/* status variables */
settings
,
"1.0"
,
MariaDB_PLUGIN_MATURITY_
GAMMA
MariaDB_PLUGIN_MATURITY_
STABLE
}
maria_declare_plugin_end
;
plugin/query_response_time/mysql-test/query_response_time/basic.result
View file @
61fd38a1
...
...
@@ -24,4 +24,4 @@ PLUGIN_TYPE AUDIT
PLUGIN_AUTHOR Percona and Sergey Vojtovich
PLUGIN_DESCRIPTION Query Response Time Distribution Audit Plugin
PLUGIN_LICENSE GPL
PLUGIN_MATURITY
Gamma
PLUGIN_MATURITY
Stable
plugin/query_response_time/plugin.cc
View file @
61fd38a1
...
...
@@ -159,6 +159,6 @@ maria_declare_plugin(query_response_time)
NULL
,
NULL
,
"1.0"
,
MariaDB_PLUGIN_MATURITY_
GAMMA
MariaDB_PLUGIN_MATURITY_
STABLE
}
maria_declare_plugin_end
;
plugin/simple_password_check/simple_password_check.c
View file @
61fd38a1
...
...
@@ -111,6 +111,6 @@ maria_declare_plugin(simple_password_check)
NULL
,
sysvars
,
"1.0"
,
MariaDB_PLUGIN_MATURITY_
GAMMA
MariaDB_PLUGIN_MATURITY_
STABLE
}
maria_declare_plugin_end
;
plugin/userstat/userstat.cc
View file @
61fd38a1
...
...
@@ -61,7 +61,7 @@ maria_declare_plugin(userstat)
NULL
,
NULL
,
"2.0"
,
MariaDB_PLUGIN_MATURITY_
GAMMA
MariaDB_PLUGIN_MATURITY_
STABLE
},
{
MYSQL_INFORMATION_SCHEMA_PLUGIN
,
...
...
@@ -76,7 +76,7 @@ maria_declare_plugin(userstat)
NULL
,
NULL
,
"2.0"
,
MariaDB_PLUGIN_MATURITY_
GAMMA
MariaDB_PLUGIN_MATURITY_
STABLE
}
maria_declare_plugin_end
;
plugin/wsrep_info/plugin.cc
View file @
61fd38a1
...
...
@@ -245,7 +245,7 @@ maria_declare_plugin(wsrep_info)
NULL
,
/* Status variables */
NULL
,
/* System variables */
"1.0"
,
/* Version (string) */
MariaDB_PLUGIN_MATURITY_
GAMMA
/* Maturity */
MariaDB_PLUGIN_MATURITY_
STABLE
/* Maturity */
},
{
MYSQL_INFORMATION_SCHEMA_PLUGIN
,
...
...
@@ -260,7 +260,7 @@ maria_declare_plugin(wsrep_info)
NULL
,
/* Status variables */
NULL
,
/* System variables */
"1.0"
,
/* Version (string) */
MariaDB_PLUGIN_MATURITY_
GAMMA
/* Maturity */
MariaDB_PLUGIN_MATURITY_
STABLE
/* Maturity */
}
maria_declare_plugin_end
;
storage/innobase/handler/ha_innodb.cc
View file @
61fd38a1
...
...
@@ -19978,7 +19978,7 @@ maria_declare_plugin(innobase)
innodb_status_variables_export
,
/* status variables */
innobase_system_variables
,
/* system variables */
INNODB_VERSION_STR
,
/* string version */
MariaDB_PLUGIN_MATURITY_
GAMMA
/* maturity */
MariaDB_PLUGIN_MATURITY_
STABLE
/* maturity */
},
i_s_innodb_trx
,
i_s_innodb_locks
,
...
...
storage/innobase/handler/i_s.cc
View file @
61fd38a1
This diff is collapsed.
Click to expand it.
storage/xtradb/handler/ha_innodb.cc
View file @
61fd38a1
...
...
@@ -21480,7 +21480,7 @@ maria_declare_plugin(xtradb)
innodb_status_variables_export
,
/* status variables */
innobase_system_variables
,
/* system variables */
INNODB_VERSION_STR
,
/* string version */
MariaDB_PLUGIN_MATURITY_
GAMMA
/* maturity */
MariaDB_PLUGIN_MATURITY_
STABLE
/* maturity */
},
i_s_xtradb_read_view
,
i_s_xtradb_internal_hash_tables
,
...
...
storage/xtradb/handler/i_s.cc
View file @
61fd38a1
This diff is collapsed.
Click to expand it.
storage/xtradb/handler/xtradb_i_s.cc
View file @
61fd38a1
...
...
@@ -176,7 +176,7 @@ UNIV_INTERN struct st_mysql_plugin i_s_xtradb_read_view =
STRUCT_FLD
(
status_vars
,
NULL
),
STRUCT_FLD
(
system_vars
,
NULL
),
STRUCT_FLD
(
version_info
,
INNODB_VERSION_STR
),
STRUCT_FLD
(
maturity
,
MariaDB_PLUGIN_MATURITY_
GAMMA
),
STRUCT_FLD
(
maturity
,
MariaDB_PLUGIN_MATURITY_
STABLE
),
};
static
ST_FIELD_INFO
xtradb_internal_hash_tables_fields_info
[]
=
...
...
@@ -381,7 +381,7 @@ UNIV_INTERN struct st_mysql_plugin i_s_xtradb_internal_hash_tables =
STRUCT_FLD
(
status_vars
,
NULL
),
STRUCT_FLD
(
system_vars
,
NULL
),
STRUCT_FLD
(
version_info
,
INNODB_VERSION_STR
),
STRUCT_FLD
(
maturity
,
MariaDB_PLUGIN_MATURITY_
GAMMA
),
STRUCT_FLD
(
maturity
,
MariaDB_PLUGIN_MATURITY_
STABLE
),
};
...
...
@@ -514,5 +514,5 @@ UNIV_INTERN struct st_mysql_plugin i_s_xtradb_rseg =
STRUCT_FLD
(
status_vars
,
NULL
),
STRUCT_FLD
(
system_vars
,
NULL
),
STRUCT_FLD
(
version_info
,
INNODB_VERSION_STR
),
STRUCT_FLD
(
maturity
,
MariaDB_PLUGIN_MATURITY_
GAMMA
),
STRUCT_FLD
(
maturity
,
MariaDB_PLUGIN_MATURITY_
STABLE
),
};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment