Skip to content

Commit af834c2

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.
1 parent 8993e40 commit af834c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

storage/innobase/fil/fil0fil.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1411,7 +1411,7 @@ void fil_space_set_recv_size_and_flags(ulint id, ulint size, uint32_t flags)
14111411

14121412
if (fil_space_t* space= fil_space_get_space(id))
14131413
{
1414-
if (!size) space->recv_size= size;
1414+
if (size) space->recv_size= size;
14151415
if (flags != FSP_FLAGS_FCRC32_MASK_MARKER) space->flags= flags;
14161416
}
14171417
mutex_exit(&fil_system.mutex);

0 commit comments

Comments
 (0)