Browse Source

bug#31552 fixing a compilation issue in the debugless build.

sql/log_event.cc:
  relaxing compilation condition as HA_ERR is started to be used for error
  reporting.
pull/374/head
unknown 18 years ago
parent
commit
3473d97857
  1. 2
      sql/log_event.cc

2
sql/log_event.cc

@ -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) {

Loading…
Cancel
Save