diff options
author | unknown <sasha@mysql.sashanet.com> | 2002-01-29 13:50:09 -0700 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2002-01-29 13:50:09 -0700 |
commit | 9330f85b35b734a9b19db2f390c6340add5d976d (patch) | |
tree | b2347de101494a6e89b403b0803c0debd07fd9bb /mysys/mf_iocache.c | |
parent | 83666b3e54fb1ae572f1125bfc171b42c9692436 (diff) | |
download | mariadb-git-9330f85b35b734a9b19db2f390c6340add5d976d.tar.gz |
temporary commit - need to pull Monty's changes
mysql-test/t/rpl000001.test:
modified test to break current replicatioin on a large log with a large lag
in slave thread between append and read of the relay log
mysys/mf_iocache.c:
fixed one bug in IO_CACHE but there is another one not fixed yet
sql/slave.cc:
fixed bug in 3.23 master replication
Diffstat (limited to 'mysys/mf_iocache.c')
-rw-r--r-- | mysys/mf_iocache.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysys/mf_iocache.c b/mysys/mf_iocache.c index 6095cc23716..872757f77c5 100644 --- a/mysys/mf_iocache.c +++ b/mysys/mf_iocache.c @@ -823,6 +823,7 @@ int my_b_append(register IO_CACHE *info, const byte *Buffer, uint Count) } Count-=length; Buffer+=length; + info->end_of_file+=length; } end: |