diff options
author | heikki@hundin.mysql.fi <> | 2004-06-17 15:11:37 +0300 |
---|---|---|
committer | heikki@hundin.mysql.fi <> | 2004-06-17 15:11:37 +0300 |
commit | a460d438d8a5d849e2b2f202e3a1ccf03121b09f (patch) | |
tree | baad2a658b2370c0745762d5213ef9863b7a68e5 /innobase/include/log0log.h | |
parent | af35718074ea017429ab7087391d4db61dffc4fe (diff) | |
download | mariadb-git-a460d438d8a5d849e2b2f202e3a1ccf03121b09f.tar.gz |
log0log.h:
Revert the patch that put log debug code behind UNIV_LOG_DEBUG
log0log.ic, log0recv.c, log0log.c, log0log.h:
Revert 1.1730.18.1 about UNIV_LOG_DEBUG: debug code is often needed in debugging the production version
Diffstat (limited to 'innobase/include/log0log.h')
-rw-r--r-- | innobase/include/log0log.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/innobase/include/log0log.h b/innobase/include/log0log.h index c17998032ce..49045e2ed7a 100644 --- a/innobase/include/log0log.h +++ b/innobase/include/log0log.h @@ -18,9 +18,7 @@ typedef struct log_struct log_t; typedef struct log_group_struct log_group_t; extern ibool log_do_write; -#ifdef UNIV_LOG_DEBUG extern ibool log_debug_writes; -#endif /* UNIV_LOG_DEBUG */ /* Wait modes for log_write_up_to */ #define LOG_NO_WAIT 91 @@ -685,13 +683,11 @@ struct log_struct{ ulint max_buf_free; /* recommended maximum value of buf_free, after which the buffer is flushed */ -#ifdef UNIV_LOG_DEBUG ulint old_buf_free; /* value of buf free when log was last time opened; only in the debug version */ dulint old_lsn; /* value of lsn when log was last time opened; only in the debug version */ -#endif /* UNIV_LOG_DEBUG */ ibool check_flush_or_checkpoint; /* this is set to TRUE when there may be need to flush the log buffer, or |