mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 07:14:17 +01:00
034a2219f0
git-svn-id: file:///svn/mysql/tests/mysql-test@55032 c7de825b-a66e-492c-adef-691d508d4ae1
16 lines
545 B
Text
16 lines
545 B
Text
# 9/22/2011
|
|
# Test that getting and setting the value for
|
|
# blocking row lock timeout works correctly.
|
|
|
|
# Make sure we can read/write the global lock timeout system variable
|
|
select @@tokudb_lock_timeout;
|
|
set global tokudb_lock_timeout=1234567;
|
|
select @@tokudb_lock_timeout;
|
|
set global tokudb_lock_timeout=0;
|
|
select @@tokudb_lock_timeout;
|
|
set global tokudb_lock_timeout=5000000;
|
|
select @@tokudb_lock_timeout;
|
|
set global tokudb_lock_timeout=1000000;
|
|
select @@tokudb_lock_timeout;
|
|
set global tokudb_lock_timeout=4000;
|
|
select @@tokudb_lock_timeout;
|