1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Merge 10.5 into 10.6

This commit is contained in:
Marko Mäkelä
2021-09-16 20:17:12 +03:00
33 changed files with 244 additions and 86 deletions

View File

@@ -226,7 +226,7 @@ bool PFS_table_context::is_item_set(ulong n)
{
ulong word= n / m_word_size;
ulong bit= n % m_word_size;
return (m_map[word] & (1 << bit));
return (m_map[word] & (1UL << bit));
}