MCPcopy Create free account
hub / github.com/MariaDB/server / max_part_bit

Function max_part_bit

sql/sql_select.cc:7363–7370  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7361
7362
7363static inline uint
7364max_part_bit(key_part_map bits)
7365{
7366 if (bits == 0)
7367 return 0;
7368 /* find first zero bit by reverting all bits and find first bit */
7369 return my_find_first_bit(~(ulonglong) bits);
7370}
7371
7372
7373/**

Callers 1

best_access_pathFunction · 0.85

Calls 1

my_find_first_bitFunction · 0.85

Tested by

no test coverage detected