diff options
author | Jon Olav Hauglid <jon.hauglid@sun.com> | 2010-02-15 13:11:20 +0100 |
---|---|---|
committer | Jon Olav Hauglid <jon.hauglid@sun.com> | 2010-02-15 13:11:20 +0100 |
commit | 37fd0bcf633e95833510c5e2aa7f98b0af4866d8 (patch) | |
tree | bb0c01fb81bb25ec67cd52907a419164aeb7ea7d /mysql-test/t/variables.test | |
parent | be3e256d25a853545c6ee04a8bf8e5b5907889c9 (diff) | |
download | mariadb-git-37fd0bcf633e95833510c5e2aa7f98b0af4866d8.tar.gz |
Followup to Bug#45225 Locking: hang if drop table with no timeout
This patch removes the unused server variable
"table_lock_wait_timeout".
mysql-test/r/variables.result:
Updated the test for Bug#28580 to reflect that
"table_lock_wait_timeout" no longer exists.
mysql-test/t/variables.test:
Updated the test for Bug#28580 to reflect that
"table_lock_wait_timeout" no longer exists.
Diffstat (limited to 'mysql-test/t/variables.test')
-rw-r--r-- | mysql-test/t/variables.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/variables.test b/mysql-test/t/variables.test index d4b88fc6f9c..8b58b8f2e68 100644 --- a/mysql-test/t/variables.test +++ b/mysql-test/t/variables.test @@ -830,8 +830,8 @@ set global join_buffer_size =@my_join_buffer_size; # Bug#28580 Repeatation of status variables # --replace_column 2 # -show global variables where Variable_name='table_definition_cache' or -Variable_name='table_lock_wait_timeout'; +show global variables where Variable_name='table_definition_cache'; +# Note: table_lock_wait_timeout no longer exists. See bug#45225. ########################################################################### |