summaryrefslogtreecommitdiff
path: root/mysql-test/t/rpl000005.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/t/rpl000005.test')
-rw-r--r--mysql-test/t/rpl000005.test24
1 files changed, 0 insertions, 24 deletions
diff --git a/mysql-test/t/rpl000005.test b/mysql-test/t/rpl000005.test
deleted file mode 100644
index e81ad739402..00000000000
--- a/mysql-test/t/rpl000005.test
+++ /dev/null
@@ -1,24 +0,0 @@
-source include/master-slave.inc;
-
-#
-# Bug#7100 relay_log_space_max missing from SHOW VARIABLES
-#
-SHOW VARIABLES LIKE 'relay_log_space_limit';
-
-CREATE TABLE t1 (name varchar(64), age smallint(3));
-INSERT INTO t1 SET name='Andy', age=31;
-INSERT t1 SET name='Jacob', age=2;
-INSERT into t1 SET name='Caleb', age=1;
-ALTER TABLE t1 ADD id int(8) ZEROFILL AUTO_INCREMENT PRIMARY KEY;
-select * from t1;
-save_master_pos;
-connection slave;
-sync_with_master;
-select * from t1;
-connection master;
-drop table t1;
-save_master_pos;
-connection slave;
-sync_with_master;
-
-# End of 4.1 tests