MDEV-34433 InnoDB never uses fil_system_t::extend_to_recv_size() during recovery

- Added the assert in extend_to_recv_size() to make sure that we never hit
this function.
parent 3d2e54ff
......@@ -1376,6 +1376,7 @@ ATTRIBUTE_COLD void fil_system_t::extend_to_recv_size()
{
if (space->is_closing())
continue;
ut_ad(0);
space->reacquire();
bool success;
while (fil_space_extend_must_retry(space, UT_LIST_GET_LAST(space->chain),
......
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