Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
4a824c0c
Commit
4a824c0c
authored
Nov 14, 2023
by
Oleksandr Byelkin
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '10.6' into mariadb-10.6.16
parents
b83c3794
91835ef3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
2 deletions
+6
-2
VERSION
VERSION
+1
-1
storage/innobase/trx/trx0purge.cc
storage/innobase/trx/trx0purge.cc
+4
-0
storage/perfschema/unittest/stub_pfs_global.h
storage/perfschema/unittest/stub_pfs_global.h
+1
-1
No files found.
VERSION
View file @
4a824c0c
MYSQL_VERSION_MAJOR=10
MYSQL_VERSION_MINOR=6
MYSQL_VERSION_PATCH=1
6
MYSQL_VERSION_PATCH=1
7
SERVER_MATURITY=stable
storage/innobase/trx/trx0purge.cc
View file @
4a824c0c
...
...
@@ -852,7 +852,9 @@ void purge_sys_t::rseg_get_next_history_log()
{
fil_addr_t
prev_log_addr
;
#ifndef SUX_LOCK_GENERIC
ut_ad
(
rseg
->
latch
.
is_write_locked
());
#endif
ut_a
(
rseg
->
last_page_no
!=
FIL_NULL
);
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)
{
ut_ad
(
next_stored
);
ut_ad
(
tail
.
trx_no
<
low_limit_no
());
#ifndef SUX_LOCK_GENERIC
ut_ad
(
rseg
->
latch
.
is_write_locked
());
#endif
if
(
!
offset
)
{
...
...
storage/perfschema/unittest/stub_pfs_global.h
View file @
4a824c0c
...
...
@@ -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
)
{
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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment