summaryrefslogtreecommitdiff
path: root/mysql-test/t/variables.test
diff options
context:
space:
mode:
authormonty@hundin.mysql.fi <>2002-08-13 02:18:39 +0300
committermonty@hundin.mysql.fi <>2002-08-13 02:18:39 +0300
commitae1ec6e16a007d2ce542dee8f494b9c30d3a30c6 (patch)
tree05ad0900ffa45f9028b912889f27021e3e9cb962 /mysql-test/t/variables.test
parent454339b29cec79c0b6bb553c114c94a81fc1a0db (diff)
downloadmariadb-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.test6
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;