summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/t/log_file_size_checkpoint.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/innodb/t/log_file_size_checkpoint.test')
-rw-r--r--mysql-test/suite/innodb/t/log_file_size_checkpoint.test27
1 files changed, 0 insertions, 27 deletions
diff --git a/mysql-test/suite/innodb/t/log_file_size_checkpoint.test b/mysql-test/suite/innodb/t/log_file_size_checkpoint.test
deleted file mode 100644
index 16b71bfd1f4..00000000000
--- a/mysql-test/suite/innodb/t/log_file_size_checkpoint.test
+++ /dev/null
@@ -1,27 +0,0 @@
---source include/have_innodb.inc
---source include/not_embedded.inc
---source include/no_valgrind_without_big.inc
-
-CREATE DATABASE logtest;
-USE logtest;
-let $n=250;
-let $t=veryLongTableNameToCreateMLOG_FILE_NAMErecords;
-
---disable_query_log
-let $i=$n;
-while ($i)
-{
---eval CREATE TABLE $t$i(a INT PRIMARY KEY) ENGINE=InnoDB;
-dec $i;
-}
-
-# If we set above n to 500, this test case could fail easily, because
-# the inndob buffer pool is too small, some of which would be occupied
-# by the recv*. With n=250, this test case could sporadically fail too.
-# So we have to set buffer pool size to 50M which should be enough for this
-# test case. Once we fix the bug#22179133 and bug#22186325, we should use
-# the default innodb buffer pool(or the smaller one).
-let $restart_parameters = --innodb-log-files-in-group=2 --innodb-log-file-size=4M --innodb-buffer-pool-size=50M;
---source include/kill_and_restart_mysqld.inc
-
-DROP DATABASE logtest;