diff options
author | unknown <monty@narttu.mysql.fi> | 2003-06-23 20:05:54 +0300 |
---|---|---|
committer | unknown <monty@narttu.mysql.fi> | 2003-06-23 20:05:54 +0300 |
commit | 68524c81feac77d7d0e8dca716738b5b59d98e3f (patch) | |
tree | 4786009a4571cb9c2f78de142df7098da40097c8 /sql/sql_repl.cc | |
parent | 35c2b9df7564c95c38f04fc4dbc3bebea81a9a41 (diff) | |
download | mariadb-git-68524c81feac77d7d0e8dca716738b5b59d98e3f.tar.gz |
Simple code cleanup
mysql-test/r/innodb.result:
Fixed test case after innodb optimize->analyze fix
mysys/mf_pack.c:
Added comments
sql/log_event.cc:
Fixed usage of fn_format()
sql/slave.cc:
Indentation fixes and comments cleanup
sql/sql_repl.cc:
Comment cleanup
Diffstat (limited to 'sql/sql_repl.cc')
-rw-r--r-- | sql/sql_repl.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/sql/sql_repl.cc b/sql/sql_repl.cc index d0ed1a19d96..ae9bd8b7727 100644 --- a/sql/sql_repl.cc +++ b/sql/sql_repl.cc @@ -68,11 +68,6 @@ static int fake_rotate_event(NET* net, String* packet, char* log_file_name, int4store(header + LOG_POS_OFFSET, 0); packet->append(header, sizeof(header)); - /* - An old comment said talked about a need for splitting the int8store below - into 2 int4store because of a problem with cxx; I can't understand that as - we already use int8store in Rotatel_log_event::write_data(). - */ int8store(buf+R_POS_OFFSET,position); packet->append(buf, ROTATE_HEADER_LEN); packet->append(p,ident_len); |