diff options
author | Monty <monty@mariadb.org> | 2018-12-07 16:37:45 +0200 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2018-12-09 22:12:24 +0200 |
commit | 5280af2b4e72e66f9b90e8e8f09e218768ca72d2 (patch) | |
tree | 07dedd80df30113be0b72851da463bb46e1ad8f4 /mysql-test/main/mdev-504.result | |
parent | dc91330d9823c2208ab16914aa313cde2edcb1a8 (diff) | |
download | mariadb-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.result')
-rw-r--r-- | mysql-test/main/mdev-504.result | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/main/mdev-504.result b/mysql-test/main/mdev-504.result index 9b8b6795e0f..e34e57be6ed 100644 --- a/mysql-test/main/mdev-504.result +++ b/mysql-test/main/mdev-504.result @@ -1,3 +1,4 @@ +set @save_use_stat_tables=@@global.use_stat_tables; SET GLOBAL net_write_timeout = 900; CREATE TABLE A ( pk INTEGER AUTO_INCREMENT PRIMARY KEY, @@ -20,5 +21,5 @@ connection default; 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; |