diff options
author | monty@hundin.mysql.fi <> | 2002-08-13 02:18:39 +0300 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2002-08-13 02:18:39 +0300 |
commit | ae1ec6e16a007d2ce542dee8f494b9c30d3a30c6 (patch) | |
tree | 05ad0900ffa45f9028b912889f27021e3e9cb962 /mysql-test/t/variables.test | |
parent | 454339b29cec79c0b6bb553c114c94a81fc1a0db (diff) | |
download | mariadb-git-ae1ec6e16a007d2ce542dee8f494b9c30d3a30c6.tar.gz |
Changed SQL variable delay_key_write to an enum
able delay_key_write as default (as it was in 4.0.2)
Diffstat (limited to 'mysql-test/t/variables.test')
-rw-r--r-- | mysql-test/t/variables.test | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/t/variables.test b/mysql-test/t/variables.test index ecc4a0cbcdc..7a1d01c2cb5 100644 --- a/mysql-test/t/variables.test +++ b/mysql-test/t/variables.test @@ -143,7 +143,13 @@ set convert_character_set=cp1251_koi8; set convert_character_set=default; set @@global.concurrent_insert=1; set global connect_timeout=100; +select @@delay_key_write; +set global delay_key_write="OFF"; +select @@delay_key_write; +set global delay_key_write=ALL; +select @@delay_key_write; set global delay_key_write=1; +select @@delay_key_write; set global delayed_insert_limit=100; set global delayed_insert_timeout=100; set global delayed_queue_size=100; |