diff options
author | Michael Widenius <monty@askmonty.org> | 2011-09-15 17:25:37 +0300 |
---|---|---|
committer | Michael Widenius <monty@askmonty.org> | 2011-09-15 17:25:37 +0300 |
commit | 574e51e5fd53649fb560237eb89a8ff65ac45e22 (patch) | |
tree | 5bdb04df81e3bfe812c5a280af0aeb842178d56f /mysql-test/t/variables.test | |
parent | 64d6cbe5568d7185e57c214690be5a24dabef6f6 (diff) | |
parent | dcce42864014e5ec3c4c22c357093518c6610342 (diff) | |
download | mariadb-git-574e51e5fd53649fb560237eb89a8ff65ac45e22.tar.gz |
Merge with 5.2
Diffstat (limited to 'mysql-test/t/variables.test')
-rw-r--r-- | mysql-test/t/variables.test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/variables.test b/mysql-test/t/variables.test index b8fae29fff5..38bbd2c9de8 100644 --- a/mysql-test/t/variables.test +++ b/mysql-test/t/variables.test @@ -36,6 +36,7 @@ set @my_thread_cache_size =@@global.thread_cache_size; set @my_max_allowed_packet =@@global.max_allowed_packet; set @my_delay_key_write =@@global.delay_key_write; set @my_join_buffer_size =@@global.join_buffer_size; +set @my_log_warnings =@@global.log_warnings; # case insensitivity tests (new in 5.0) set @`test`=1; select @test, @`test`, @TEST, @`TEST`, @"teSt"; @@ -844,6 +845,7 @@ set global thread_cache_size =@my_thread_cache_size; set global max_allowed_packet = default; set global delay_key_write =@my_delay_key_write; set global join_buffer_size =@my_join_buffer_size; +set global log_warnings =@my_log_warnings; # # Bug#28580 Repeatation of status variables |