mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 02:05:57 +01:00
MDEV-19176 Reduce the memory usage during recovery
- post-push to fix the compilation issue
This commit is contained in:
parent
bba59abb03
commit
90ba87cb9e
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ buf_pool_get_n_pages(void)
|
|||
{
|
||||
buf_pool_t* buf_pool = buf_pool_from_array(i);
|
||||
for (uint j= 0; j < buf_pool->n_chunks; j++)
|
||||
chunk_size+= buf_pool->chunks[j]->size;
|
||||
chunk_size+= buf_pool->chunks[j].size;
|
||||
}
|
||||
return chunk_size;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue