diff options
author | mats@romeo.(none) <> | 2006-10-06 10:17:02 +0200 |
---|---|---|
committer | mats@romeo.(none) <> | 2006-10-06 10:17:02 +0200 |
commit | e762328b544d1ff67b9ae472d62df13c2987d2b9 (patch) | |
tree | c53b3dcab5ecc776912602d4cd486b053c124aec /mysys/mf_iocache2.c | |
parent | d1b9686245d9952ec386f0e35f4693a973dc5581 (diff) | |
download | mariadb-git-e762328b544d1ff67b9ae472d62df13c2987d2b9.tar.gz |
BUG#19459 (BINLOG RBR command does not lock tables correctly causing
crash for, e.g., NDB):
Before, mysqlbinlog printed table map events as a separate statement, so
when executing the event, the opened table was subsequently closed
when the statement ended. Instead, the row-based events that make up
a statement are now printed as *one* BINLOG statement, which means
that the table maps and the following *_rows_log_event events are
executed fully before the statement ends.
Changing implementation of BINLOG statement to be able to read the
emitted format, which now consists of several chunks of BASE64-encoded
data.
Diffstat (limited to 'mysys/mf_iocache2.c')
-rw-r--r-- | mysys/mf_iocache2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/mf_iocache2.c b/mysys/mf_iocache2.c index d76b895aeb0..57a06e263a6 100644 --- a/mysys/mf_iocache2.c +++ b/mysys/mf_iocache2.c @@ -28,7 +28,7 @@ Copy contents of an IO_CACHE to a file. SYNOPSIS - copy_io_cache_to_file() + my_b_copy_to_file() cache IO_CACHE to copy from file File to copy to |