Skip to content
Permalink
Browse files
MDEV-23199 page_compression flag is missing for full_crc32 tablespace
- Changed the fil_space_set_recv_size_and_flags() to set the
tablespace size when size is not zero.
  • Loading branch information
Thirunarayanan committed Sep 11, 2020
1 parent 8993e40 commit af834c2
Showing 1 changed file with 1 addition and 1 deletion.
@@ -1411,7 +1411,7 @@ void fil_space_set_recv_size_and_flags(ulint id, ulint size, uint32_t flags)

if (fil_space_t* space= fil_space_get_space(id))
{
if (!size) space->recv_size= size;
if (size) space->recv_size= size;
if (flags != FSP_FLAGS_FCRC32_MASK_MARKER) space->flags= flags;
}
mutex_exit(&fil_system.mutex);

0 comments on commit af834c2

Please sign in to comment.