From: Andrei Elkin Date: December 13 2007 8:32am Subject: bk commit into 5.1 tree (aelkin:1.2654) BUG#31552 List-Archive: http://lists.mysql.com/commits/39861 X-Bug: 31552 Message-Id: <200712130832.lBD8WU9u018661@dl145j.mysql.com> Below is the list of changes that have just been committed into a local 5.1 repository of aelkin. When aelkin does a push these changes will be propagated to the main repository and, within 24 hours after the push, to the public repository. For information on how to access the public repository see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html ChangeSet@stripped, 2007-12-13 09:32:23+01:00, aelkin@stripped +1 -0 bug#31552 fixing a compilation issue in the debugless build. sql/log_event.cc@stripped, 2007-12-13 09:31:23+01:00, aelkin@stripped +1 -1 relaxing compilation condition as HA_ERR is started to be used for error reporting. diff -Nrup a/sql/log_event.cc b/sql/log_event.cc --- a/sql/log_event.cc 2007-12-12 20:10:39 +01:00 +++ b/sql/log_event.cc 2007-12-13 09:31:23 +01:00 @@ -46,7 +46,7 @@ #define FMT_G_BUFSIZE(PREC) (3 + (PREC) + 5 + 1) -#if !defined(MYSQL_CLIENT) && defined(HAVE_REPLICATION) && !defined(DBUG_OFF) && !defined(_lint) +#if !defined(MYSQL_CLIENT) && defined(HAVE_REPLICATION) static const char *HA_ERR(int i) { switch (i) {