diff options
author | unknown <monty@mashka.mysql.fi> | 2003-04-26 21:10:13 +0300 |
---|---|---|
committer | unknown <monty@mashka.mysql.fi> | 2003-04-26 21:10:13 +0300 |
commit | 3e90ec6a582ec6a39209c00329ed93a7cc639ded (patch) | |
tree | b6c7972aefbe2a8d4c3651b65e740684673ec52b /sql/log_event.cc | |
parent | 62af18cb8729894625d005e260838f68b7c57175 (diff) | |
parent | 418467e32ad8617c1546870f1b24493601ca4d47 (diff) | |
download | mariadb-git-3e90ec6a582ec6a39209c00329ed93a7cc639ded.tar.gz |
Merge with 3.23:
Set innobase_flush_log_at_trx_commit to 1 by default
Fix problem with timestamp on 64 bit systems
Reserve alarms for up to 10 slave threads
BitKeeper/etc/logging_ok:
auto-union
mysql-test/t/rpl_alter.test:
Auto merged
mysys/charset.c:
Auto merged
sql/log_event.cc:
Auto merged
mysql-test/r/join.result:
Merge with 3.23
mysql-test/t/join.test:
Merge with 3.23
sql/ha_innodb.cc:
Merge with 3.23; Set innobase_flush_log_at_trx_commit to 1 by default
sql/log_event.h:
Merge with 3.23; Fix problem with timestamp on 64 bit systems
sql/mini_client.cc:
Use local version
sql/mysqld.cc:
Reserve alarms for up to 10 slave threads
sql/slave.cc:
Use local version
sql/sql_list.h:
Use local version
Diffstat (limited to 'sql/log_event.cc')
-rw-r--r-- | sql/log_event.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/log_event.cc b/sql/log_event.cc index 05d5788f5ae..bbea89bfd3f 100644 --- a/sql/log_event.cc +++ b/sql/log_event.cc @@ -717,7 +717,7 @@ void Start_log_event::print(FILE* file, bool short_form, char* last_db) print_header(file); fprintf(file, "\tStart: binlog v %d, server v %s created ", binlog_version, server_version); - print_timestamp(file, (time_t*)&created); + print_timestamp(file, &created); fputc('\n', file); fflush(file); } |