Skip to content

Commit 251b521

Browse files
committed
main.mysqldump test isn't that big
and it is that important to be run every time
1 parent a7b6943 commit 251b521

File tree

2 files changed

+1
-19
lines changed

2 files changed

+1
-19
lines changed

mysql-test/main/mysqldump.result

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
call mtr.add_suppression("@003f.frm' \\(errno: 22\\)");
2+
call mtr.add_suppression("Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT");
23
# Bug#37938 Test "mysqldump" lacks various insert statements
34
# Turn off concurrent inserts to avoid random errors
45
# NOTE: We reset the variable back to saved value at the end of test
56
SET @OLD_CONCURRENT_INSERT = @@GLOBAL.CONCURRENT_INSERT;
67
SET @@GLOBAL.CONCURRENT_INSERT = 0;
7-
DROP TABLE IF EXISTS t1, `"t"1`, t1aa, t2, t2aa, t3;
8-
drop database if exists mysqldump_test_db;
9-
drop database if exists db1;
10-
drop database if exists db2;
11-
drop view if exists v1, v2, v3;
128
CREATE TABLE t1(a INT, KEY (a)) KEY_BLOCK_SIZE=1024;
139
INSERT INTO t1 VALUES (1), (2);
1410
<?xml version="1.0"?>

mysql-test/main/mysqldump.test

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -19,28 +19,14 @@ let collation=utf8_unicode_ci;
1919
# There are tables in 'mysql' database of type innodb
2020
--source include/have_innodb.inc
2121

22-
# This test is slow on buildbot.
23-
--source include/big_test.inc
24-
25-
disable_query_log;
2622
call mtr.add_suppression("Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT");
27-
enable_query_log;
2823

2924
--echo # Bug#37938 Test "mysqldump" lacks various insert statements
3025
--echo # Turn off concurrent inserts to avoid random errors
3126
--echo # NOTE: We reset the variable back to saved value at the end of test
3227
SET @OLD_CONCURRENT_INSERT = @@GLOBAL.CONCURRENT_INSERT;
3328
SET @@GLOBAL.CONCURRENT_INSERT = 0;
3429

35-
36-
--disable_warnings
37-
DROP TABLE IF EXISTS t1, `"t"1`, t1aa, t2, t2aa, t3;
38-
drop database if exists mysqldump_test_db;
39-
drop database if exists db1;
40-
drop database if exists db2;
41-
drop view if exists v1, v2, v3;
42-
--enable_warnings
43-
4430
# XML output
4531

4632
CREATE TABLE t1(a INT, KEY (a)) KEY_BLOCK_SIZE=1024;

0 commit comments

Comments
 (0)