diff options
author | Jon Olav Hauglid <jon.hauglid@oracle.com> | 2014-06-19 16:47:41 +0200 |
---|---|---|
committer | Jon Olav Hauglid <jon.hauglid@oracle.com> | 2014-06-19 16:47:41 +0200 |
commit | 879fec69fced11ca9bdd9379c757396c374b45bd (patch) | |
tree | 646c204bc9903a546ff0ec2d2f9653d31c69dd11 /mysql-test/r/variables.result | |
parent | 63bc784aaa2078f87ad6b5b24f3c155a3dbecd9e (diff) | |
download | mariadb-git-879fec69fced11ca9bdd9379c757396c374b45bd.tar.gz |
WL#7436: Deprecate and remove timed_mutexes system variable
This is the 5.5/5.6 version of the patch.
Add deprecation warning for timed_mutexes.
Diffstat (limited to 'mysql-test/r/variables.result')
-rw-r--r-- | mysql-test/r/variables.result | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/r/variables.result b/mysql-test/r/variables.result index 359901b7aaa..aebd8949ab7 100644 --- a/mysql-test/r/variables.result +++ b/mysql-test/r/variables.result @@ -188,6 +188,8 @@ select @@concurrent_insert; @@concurrent_insert AUTO set global timed_mutexes=ON; +Warnings: +Warning 1287 '@@timed_mutexes' is deprecated and will be removed in a future release. show variables like 'timed_mutexes'; Variable_name Value timed_mutexes ON @@ -195,6 +197,8 @@ select * from information_schema.session_variables where variable_name like 'tim VARIABLE_NAME VARIABLE_VALUE TIMED_MUTEXES ON set global timed_mutexes=0; +Warnings: +Warning 1287 '@@timed_mutexes' is deprecated and will be removed in a future release. show variables like 'timed_mutexes'; Variable_name Value timed_mutexes OFF |