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 /client | |
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 'client')
-rw-r--r-- | client/mysqltest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/mysqltest.c b/client/mysqltest.c index 992583bb230..b7c0c09579c 100644 --- a/client/mysqltest.c +++ b/client/mysqltest.c @@ -1458,7 +1458,7 @@ int main(int argc, char** argv) q->require_file=require_file; save_file[0]=0; } - error |= run_query(&cur_con->mysql, q, QUERY_SEND|QUERY_REAP); + error |= run_query(&cur_con->mysql, q, flags); break; } case Q_SEND: |