diff options
author | sasha@mysql.sashanet.com <> | 2001-05-03 11:46:49 -0600 |
---|---|---|
committer | sasha@mysql.sashanet.com <> | 2001-05-03 11:46:49 -0600 |
commit | c8fdb958157fe85e2bdf2dc89dcbce4b43d636bc (patch) | |
tree | 3227ccf9bcd42bcd7b78c9a1a0edef48a6825a9d /mysql-test | |
parent | af27c38ff602ee7f815706d6cb3dad6bd71b0ebf (diff) | |
download | mariadb-git-c8fdb958157fe85e2bdf2dc89dcbce4b43d636bc.tar.gz |
reversed virtual master
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/r/binlog-backup-restore.result | 5 | ||||
-rw-r--r-- | mysql-test/t/binlog-backup-restore.test | 18 |
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; - |