mirror of
https://github.com/MariaDB/server.git
synced 2026-05-07 07:35:32 +02:00
Removed some unnecessary assertions to debug build and enhanced the page_compression and page_compression_level fetch.
This commit is contained in:
parent
ec8257216e
commit
58ce55134f
7 changed files with 171 additions and 127 deletions
|
|
@ -220,6 +220,10 @@ pfs_os_aio_func(
|
|||
operation for this page and if
|
||||
initialized we do not trim again if
|
||||
actual page size does not decrease. */
|
||||
ibool page_compression, /*!< in: is page compression used
|
||||
on this file space */
|
||||
ulint page_compression_level, /*!< page compression
|
||||
level to be used */
|
||||
const char* src_file,/*!< in: file name where func invoked */
|
||||
ulint src_line)/*!< in: line where the func invoked */
|
||||
{
|
||||
|
|
@ -235,7 +239,8 @@ pfs_os_aio_func(
|
|||
src_file, src_line);
|
||||
|
||||
result = os_aio_func(type, mode, name, file, buf, offset,
|
||||
n, message1, message2, write_size);
|
||||
n, message1, message2, write_size,
|
||||
page_compression, page_compression_level);
|
||||
|
||||
register_pfs_file_io_end(locker, n);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue