Commit 011a6c0b authored by vasil's avatar vasil

branches/5.1:

 
Fix Bug#36942 Performance problem in lock_get_n_rec_locks (SHOW INNODB STATUS)
by not calling lock_get_n_rec_locks() from lock_print_info_summary() on
production builds.
 
Approved by:	Heikki (via IM)
parent e6804447
...@@ -4138,6 +4138,15 @@ lock_rec_print( ...@@ -4138,6 +4138,15 @@ lock_rec_print(
} }
#ifndef UNIV_HOTBACKUP #ifndef UNIV_HOTBACKUP
#ifdef UNIV_DEBUG
/* Print the number of lock structs from lock_print_info_summary() only
in non-production builds for performance reasons, see
http://bugs.mysql.com/36942 */
#define PRINT_NUM_OF_LOCK_STRUCTS
#endif /* UNIV_DEBUG */
#ifdef PRINT_NUM_OF_LOCK_STRUCTS
/************************************************************************* /*************************************************************************
Calculates the number of record lock structs in the record lock hash table. */ Calculates the number of record lock structs in the record lock hash table. */
static static
...@@ -4164,6 +4173,7 @@ lock_get_n_rec_locks(void) ...@@ -4164,6 +4173,7 @@ lock_get_n_rec_locks(void)
return(n_locks); return(n_locks);
} }
#endif /* PRINT_NUM_OF_LOCK_STRUCTS */
/************************************************************************* /*************************************************************************
Prints info of locks for all transactions. */ Prints info of locks for all transactions. */
...@@ -4207,9 +4217,11 @@ lock_print_info_summary( ...@@ -4207,9 +4217,11 @@ lock_print_info_summary(
"History list length %lu\n", "History list length %lu\n",
(ulong) trx_sys->rseg_history_len); (ulong) trx_sys->rseg_history_len);
#ifdef PRINT_NUM_OF_LOCK_STRUCTS
fprintf(file, fprintf(file,
"Total number of lock structs in row lock hash table %lu\n", "Total number of lock structs in row lock hash table %lu\n",
(ulong) lock_get_n_rec_locks()); (ulong) lock_get_n_rec_locks());
#endif /* PRINT_NUM_OF_LOCK_STRUCTS */
} }
/************************************************************************* /*************************************************************************
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment