MDEV-30076 ibuf_insert tries to insert the entry for uncommitted index

- Change buffer should not buffer the changes for uncommitted index
parent 2bfd04e3
......@@ -3577,6 +3577,10 @@ ibuf_insert(
ulint zip_size,
que_thr_t* thr)
{
if (!index->is_committed()) {
return false;
}
dberr_t err;
ulint entry_size;
ibool no_counter;
......
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