mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 03:21:53 +01:00
Fix Bug#52983.
This commit is contained in:
parent
657e720bac
commit
914364481e
1 changed files with 2 additions and 1 deletions
|
@ -2067,7 +2067,8 @@ srv_export_innodb_status(void)
|
|||
#endif /* UNIV_DEBUG */
|
||||
export_vars.innodb_buffer_pool_pages_total = buf_pool_get_n_pages();
|
||||
|
||||
export_vars.innodb_buffer_pool_pages_misc = buf_pool_get_curr_size();
|
||||
export_vars.innodb_buffer_pool_pages_misc
|
||||
= buf_pool_get_n_pages() - LRU_len - free_len
|
||||
#ifdef HAVE_ATOMIC_BUILTINS
|
||||
export_vars.innodb_have_atomic_builtins = 1;
|
||||
#else
|
||||
|
|
Loading…
Add table
Reference in a new issue