diff options
author | unknown <sasha@mysql.sashanet.com> | 2001-01-23 08:20:51 -0700 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2001-01-23 08:20:51 -0700 |
commit | 0d6cc6280116b919578fabcdedd5fd496638609c (patch) | |
tree | 610931dfae70ffd69399727175981afbc9b08848 /mysql-test/t/backup.test | |
parent | e4667fc51861263cdc46f59cb09d6def8edd6daf (diff) | |
download | mariadb-git-0d6cc6280116b919578fabcdedd5fd496638609c.tar.gz |
fixes for tests
client/mysqltest.c:
fixed bug in reap command
mysql-test/r/backup.result:
update to backup test
mysql-test/t/backup.test:
test to see if lock tables /unlock tables will cause a problem
mysql-test/t/rpl000016.test:
fixed syncronization problem between master and slave
Diffstat (limited to 'mysql-test/t/backup.test')
-rw-r--r-- | mysql-test/t/backup.test | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/mysql-test/t/backup.test b/mysql-test/t/backup.test index 396576badb7..17b06d73814 100644 --- a/mysql-test/t/backup.test +++ b/mysql-test/t/backup.test @@ -26,6 +26,19 @@ select n from t1; select m from t2; select k from t3; drop table t1,t2,t3; -#restore table t1 from '../tmp'; -#connection con2; -#lock tables t1 write; +restore table t1 from '../tmp'; +connection con2; +send lock tables t1 write; +connection con1; +send backup table t1 to '../tmp'; +connection con2; +reap; +unlock tables; +connection con1; +reap; + + + + + + |