diff options
author | guilhem@mysql.com <> | 2003-12-19 23:05:07 +0100 |
---|---|---|
committer | guilhem@mysql.com <> | 2003-12-19 23:05:07 +0100 |
commit | 1333f636ae47fe4c88b38e9bfdf582336228112e (patch) | |
tree | 50edba9e847c863859ce7be00e6bbda0b26f939b /sql/log_event.h | |
parent | df3b1a54f4cc62411b73ea8e146b9527147918db (diff) | |
parent | 29e1bddb4337481ae2fbdfb6558060f85841eacb (diff) | |
download | mariadb-git-1333f636ae47fe4c88b38e9bfdf582336228112e.tar.gz |
Merge gbichot@bk-internal.mysql.com:/home/bk/mysql-5.0
into mysql.com:/home/mysql_src/mysql-5.0-new-binlog-format
Diffstat (limited to 'sql/log_event.h')
-rw-r--r-- | sql/log_event.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/log_event.h b/sql/log_event.h index 58691c6a24f..147a943144b 100644 --- a/sql/log_event.h +++ b/sql/log_event.h @@ -950,7 +950,7 @@ public: #ifndef MYSQL_CLIENT Intvar_log_event(THD* thd_arg,uchar type_arg, ulonglong val_arg) - :Log_event(),val(val_arg),type(type_arg) + :Log_event(thd_arg,0,0),val(val_arg),type(type_arg) {} #ifdef HAVE_REPLICATION void pack_info(Protocol* protocol); @@ -1099,7 +1099,7 @@ public: Rotate_log_event(THD* thd_arg, const char* new_log_ident_arg, uint ident_len_arg = 0, ulonglong pos_arg = LOG_EVENT_OFFSET) - :Log_event(thd_arg,0,0), new_log_ident(new_log_ident_arg), + :Log_event(), new_log_ident(new_log_ident_arg), pos(pos_arg),ident_len(ident_len_arg ? ident_len_arg : (uint) strlen(new_log_ident_arg)), alloced(0) {} |