Commit 4a824c0c authored by Oleksandr Byelkin's avatar Oleksandr Byelkin

Merge branch '10.6' into mariadb-10.6.16

parents b83c3794 91835ef3
MYSQL_VERSION_MAJOR=10 MYSQL_VERSION_MAJOR=10
MYSQL_VERSION_MINOR=6 MYSQL_VERSION_MINOR=6
MYSQL_VERSION_PATCH=16 MYSQL_VERSION_PATCH=17
SERVER_MATURITY=stable SERVER_MATURITY=stable
...@@ -852,7 +852,9 @@ void purge_sys_t::rseg_get_next_history_log() ...@@ -852,7 +852,9 @@ void purge_sys_t::rseg_get_next_history_log()
{ {
fil_addr_t prev_log_addr; fil_addr_t prev_log_addr;
#ifndef SUX_LOCK_GENERIC
ut_ad(rseg->latch.is_write_locked()); ut_ad(rseg->latch.is_write_locked());
#endif
ut_a(rseg->last_page_no != FIL_NULL); ut_a(rseg->last_page_no != FIL_NULL);
tail.trx_no= rseg->last_trx_no() + 1; tail.trx_no= rseg->last_trx_no() + 1;
...@@ -968,7 +970,9 @@ inline trx_purge_rec_t purge_sys_t::get_next_rec(roll_ptr_t roll_ptr) ...@@ -968,7 +970,9 @@ inline trx_purge_rec_t purge_sys_t::get_next_rec(roll_ptr_t roll_ptr)
{ {
ut_ad(next_stored); ut_ad(next_stored);
ut_ad(tail.trx_no < low_limit_no()); ut_ad(tail.trx_no < low_limit_no());
#ifndef SUX_LOCK_GENERIC
ut_ad(rseg->latch.is_write_locked()); ut_ad(rseg->latch.is_write_locked());
#endif
if (!offset) if (!offset)
{ {
......
...@@ -58,7 +58,7 @@ void *pfs_malloc(PFS_builtin_memory_class *klass, size_t size, myf) ...@@ -58,7 +58,7 @@ void *pfs_malloc(PFS_builtin_memory_class *klass, size_t size, myf)
void pfs_free(PFS_builtin_memory_class *, size_t, void *ptr) void pfs_free(PFS_builtin_memory_class *, size_t, void *ptr)
{ {
if (ptr != NULL) if (ptr != NULL)
free(ptr); aligned_free(ptr);
} }
void *pfs_malloc_array(PFS_builtin_memory_class *klass, size_t n, size_t size, myf flags) void *pfs_malloc_array(PFS_builtin_memory_class *klass, size_t n, size_t size, myf flags)
......
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