summaryrefslogtreecommitdiff
path: root/mysql-test
diff options
context:
space:
mode:
authorunknown <sasha@mysql.sashanet.com>2001-05-03 11:46:49 -0600
committerunknown <sasha@mysql.sashanet.com>2001-05-03 11:46:49 -0600
commit70f585cbd689a2418a572097f0cf090b049cc4e2 (patch)
tree3227ccf9bcd42bcd7b78c9a1a0edef48a6825a9d /mysql-test
parentd067af6a168860548f31175966bfc830028dd5f6 (diff)
downloadmariadb-git-70f585cbd689a2418a572097f0cf090b049cc4e2.tar.gz
reversed virtual master
BitKeeper/deleted/.del-binlog-backup-restore.test~d5b0b9bd83738a9f: Delete: mysql-test/t/binlog-backup-restore.test BitKeeper/deleted/.del-binlog-backup-restore.result~605de78abda64d27: Delete: mysql-test/r/binlog-backup-restore.result
Diffstat (limited to 'mysql-test')
-rw-r--r--mysql-test/r/binlog-backup-restore.result5
-rw-r--r--mysql-test/t/binlog-backup-restore.test18
2 files changed, 0 insertions, 23 deletions
diff --git a/mysql-test/r/binlog-backup-restore.result b/mysql-test/r/binlog-backup-restore.result
deleted file mode 100644
index ebfe8217906..00000000000
--- a/mysql-test/r/binlog-backup-restore.result
+++ /dev/null
@@ -1,5 +0,0 @@
-n
-11
-12
-13
-14
diff --git a/mysql-test/t/binlog-backup-restore.test b/mysql-test/t/binlog-backup-restore.test
deleted file mode 100644
index 546782c5825..00000000000
--- a/mysql-test/t/binlog-backup-restore.test
+++ /dev/null
@@ -1,18 +0,0 @@
-reset master;
-drop table if exists t1;
-create table t1(n int);
-insert into t1 values (1),(2),(3),(4);
-flush logs;
-update t1 set n = n + 10;
-save_master_pos;
-flush tables with read lock;
-system rm -rf var/tmp/backup;
-system mkdir -p var/tmp/backup;
-system cp var/master-data/master-bin.* var/tmp/backup;
-unlock tables;
-drop table t1;
-eval change master to master_host='$MYSQL_TEST_DIR/var/tmp/backup/master-bin';
-slave start;
-sync_with_master;
-select * from t1;
-