Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.5.5
-
None
Description
InnoDB fails to clear all the pages present in buffer pool while freeing the extent. It is caused by MDEV-8139
for (ulint i = 0; i < FSP_EXTENT_SIZE; i++) {
|
if (!xdes_is_free(descr, i)) {
|
buf_page_free(
|
- page_id_t(space->id, first_page_in_extent + i),
|
+ page_id_t(space->id, first_page_in_extent + 1),
|
mtr, __FILE__, __LINE__);
|
}
|
}
|
Attachments
Issue Links
- is caused by
-
MDEV-8139 Fix scrubbing
- Closed