summaryrefslogtreecommitdiff
path: root/mysql-test/t/rpl000017.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/t/rpl000017.test')
-rw-r--r--mysql-test/t/rpl000017.test24
1 files changed, 0 insertions, 24 deletions
diff --git a/mysql-test/t/rpl000017.test b/mysql-test/t/rpl000017.test
deleted file mode 100644
index 4488cbad230..00000000000
--- a/mysql-test/t/rpl000017.test
+++ /dev/null
@@ -1,24 +0,0 @@
--- source include/have_log_bin.inc
-
-connect (master,localhost,root,,test,$MASTER_MYPORT,$MASTER_MYSOCK);
-connect (slave,localhost,root,,test,$SLAVE_MYPORT,$SLAVE_MYSOCK);
-connection master;
-reset master;
-grant replication slave on *.* to replicate@localhost identified by 'aaaaaaaaaaaaaaab';
-grant replication slave on *.* to replicate@127.0.0.1 identified by 'aaaaaaaaaaaaaaab';
-connection slave;
-start slave;
-connection master;
---disable_warnings
-drop table if exists t1;
---enable_warnings
-create table t1(n int);
-insert into t1 values(24);
-sync_slave_with_master;
-select * from t1;
-connection master;
-drop table t1;
-delete from mysql.user where user="replicate";
-sync_slave_with_master;
-
-# End of 4.1 tests