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 /mysys/thr_lock.c | |
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 'mysys/thr_lock.c')
-rw-r--r-- | mysys/thr_lock.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mysys/thr_lock.c b/mysys/thr_lock.c index 2590654c672..43db0470735 100644 --- a/mysys/thr_lock.c +++ b/mysys/thr_lock.c @@ -83,7 +83,6 @@ multiple read locks. my_bool thr_lock_inited=0; ulong locks_immediate = 0L, locks_waited = 0L; -ulong table_lock_wait_timeout; enum thr_lock_type thr_upgraded_concurrent_insert_lock = TL_WRITE; /* The following constants are only for debug output */ |