| 7361 | |
| 7362 | |
| 7363 | static inline uint |
| 7364 | max_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 | /** |
no test coverage detected