mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
mysql-5.5.33 merge
This commit is contained in:
@ -71,6 +71,7 @@ public:
|
||||
bool is_subset(const Bitmap& map2) const { return bitmap_is_subset(&map, &map2.map); }
|
||||
bool is_overlapping(const Bitmap& map2) const { return bitmap_is_overlapping(&map, &map2.map); }
|
||||
bool operator==(const Bitmap& map2) const { return bitmap_cmp(&map, &map2.map); }
|
||||
bool operator!=(const Bitmap& map2) const { return !(*this == map2); }
|
||||
char *print(char *buf) const
|
||||
{
|
||||
char *s=buf;
|
||||
|
Reference in New Issue
Block a user