summaryrefslogtreecommitdiff
path: root/mysql-test/main/mdev-504.test
diff options
context:
space:
mode:
authorMonty <monty@mariadb.org>2018-12-07 16:37:45 +0200
committerMonty <monty@mariadb.org>2018-12-09 22:12:24 +0200
commit5280af2b4e72e66f9b90e8e8f09e218768ca72d2 (patch)
tree07dedd80df30113be0b72851da463bb46e1ad8f4 /mysql-test/main/mdev-504.test
parentdc91330d9823c2208ab16914aa313cde2edcb1a8 (diff)
downloadmariadb-git-5280af2b4e72e66f9b90e8e8f09e218768ca72d2.tar.gz
Cleaned up some MTR tests
- Moved tests depending on utf8 characters from create to create_utf8 - Fixed some tests in create and sp that wrongly tried to create table from non existing table on existing table. In a later patch we may first check if table exists, in which case the error message would change. - Updated results for partition_debug_tokudb
Diffstat (limited to 'mysql-test/main/mdev-504.test')
-rw-r--r--mysql-test/main/mdev-504.test4
1 files changed, 3 insertions, 1 deletions
diff --git a/mysql-test/main/mdev-504.test b/mysql-test/main/mdev-504.test
index 551c21c37d0..277b5a038a0 100644
--- a/mysql-test/main/mdev-504.test
+++ b/mysql-test/main/mdev-504.test
@@ -1,6 +1,8 @@
--source include/not_valgrind.inc
--source include/no_protocol.inc
+set @save_use_stat_tables=@@global.use_stat_tables;
+
SET GLOBAL net_write_timeout = 900;
CREATE TABLE A (
@@ -76,5 +78,5 @@ while ($trial)
DROP TABLE A;
DROP PROCEDURE p_analyze;
DROP FUNCTION rnd3;
-SET GLOBAL use_stat_tables = DEFAULT;
+SET GLOBAL use_stat_tables = @save_use_stat_tables;
SET GLOBAL net_write_timeout = DEFAULT;