Details
-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 10.5.5
-
Fix Version/s: 10.5.9
-
Component/s: Storage Engine - InnoDB
-
Labels: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
-