diff options
Diffstat (limited to 'innobase/log/log0recv.c')
-rw-r--r-- | innobase/log/log0recv.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/innobase/log/log0recv.c b/innobase/log/log0recv.c index 01679a374b0..0a1115a6891 100644 --- a/innobase/log/log0recv.c +++ b/innobase/log/log0recv.c @@ -181,9 +181,10 @@ recv_sys_empty_hash(void) recv_sys->addr_hash = hash_create(buf_pool_get_curr_size() / 256); } +#ifndef UNIV_LOG_DEBUG /************************************************************ Frees the recovery system. */ - +static void recv_sys_free(void) /*===============*/ @@ -200,6 +201,7 @@ recv_sys_free(void) mutex_exit(&(recv_sys->mutex)); } +#endif /* !UNIV_LOG_DEBUG */ /************************************************************ Truncates possible corrupted or extra records from a log group. */ @@ -358,7 +360,7 @@ Copies a log segment from the most up-to-date log group to the other log groups, so that they all contain the latest log data. Also writes the info about the latest checkpoint to the groups, and inits the fields in the group memory structs to up-to-date values. */ - +static void recv_synchronize_groups( /*====================*/ @@ -1803,10 +1805,11 @@ recv_calc_lsn_on_data_add( return(ut_dulint_add(lsn, lsn_len)); } +#ifdef UNIV_LOG_DEBUG /*********************************************************** Checks that the parser recognizes incomplete initial segments of a log record as incomplete. */ - +static void recv_check_incomplete_log_recs( /*===========================*/ @@ -1824,6 +1827,7 @@ recv_check_incomplete_log_recs( &page_no, &body)); } } +#endif /* UNIV_LOG_DEBUG */ /*********************************************************** Prints diagnostic info of corrupt log. */ |