mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Merge branch '10.6' into 10.11
This commit is contained in:
@@ -3346,7 +3346,7 @@ Rows_log_event::Rows_log_event(const uchar *buf, uint event_len,
|
||||
}
|
||||
else
|
||||
{
|
||||
m_table_id= (ulong) uint6korr(post_start);
|
||||
m_table_id= (ulonglong) uint6korr(post_start);
|
||||
post_start+= RW_FLAGS_OFFSET;
|
||||
}
|
||||
|
||||
@@ -3701,11 +3701,12 @@ Table_map_log_event::Table_map_log_event(const uchar *buf, uint event_len,
|
||||
else
|
||||
{
|
||||
DBUG_ASSERT(post_header_len == TABLE_MAP_HEADER_LEN);
|
||||
m_table_id= (ulong) uint6korr(post_start);
|
||||
m_table_id= (ulonglong) uint6korr(post_start);
|
||||
post_start+= TM_FLAGS_OFFSET;
|
||||
}
|
||||
|
||||
DBUG_ASSERT(m_table_id != ~0ULL);
|
||||
DBUG_ASSERT((m_table_id & MAX_TABLE_MAP_ID) != UINT32_MAX &&
|
||||
(m_table_id & MAX_TABLE_MAP_ID) != 0);
|
||||
|
||||
m_flags= uint2korr(post_start);
|
||||
|
||||
|
Reference in New Issue
Block a user