summaryrefslogtreecommitdiff
path: root/sql/log_event.cc
diff options
context:
space:
mode:
authorunknown <sasha@mysql.sashanet.com>2000-12-08 07:11:22 -0700
committerunknown <sasha@mysql.sashanet.com>2000-12-08 07:11:22 -0700
commit464471ae7519ea13930e515237f03d4040c96416 (patch)
treea4a9077b0d73cbf688a84c248e633a7bd14e9743 /sql/log_event.cc
parent417f8c3fde9ac028bb1be4147edf67318af78f8d (diff)
downloadmariadb-git-464471ae7519ea13930e515237f03d4040c96416.tar.gz
fixed bug in load data infile replication
updated test suite to always test if slave obeys stop/start commands mysql-test/include/master-slave.inc: test if the slave actually stops and starts in response to slave start/slave stop sql/log_event.cc: call the right constructor - I am 99% sure this is what cause sporadic failures of rpl000001 sql/share/romanian/errmsg.sys: not changed
Diffstat (limited to 'sql/log_event.cc')
-rw-r--r--sql/log_event.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/log_event.cc b/sql/log_event.cc
index 9d7e935f3ef..fa6ac4f45fc 100644
--- a/sql/log_event.cc
+++ b/sql/log_event.cc
@@ -572,7 +572,7 @@ Load_log_event::Load_log_event(IO_CACHE* file, time_t when, uint32 server_id):
}
Load_log_event::Load_log_event(const char* buf, int event_len):
- Log_event(when,0,0,server_id),data_buf(0),num_fields(0),fields(0),
+ Log_event(buf),data_buf(0),num_fields(0),fields(0),
field_lens(0),field_block_len(0),
table_name(0),db(0),fname(0)
{