2014-02-25 16:04:35 +01:00
|
|
|
/* Copyright (c) 2003, 2013, Oracle and/or its affiliates
|
2013-04-07 14:00:16 +02:00
|
|
|
Copyright (c) 2009, 2013, Monty Program Ab.
|
2003-11-02 13:00:25 +01:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2006-12-23 20:17:15 +01:00
|
|
|
the Free Software Foundation; version 2 of the License.
|
2003-11-02 13:00:25 +01:00
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2019-05-11 20:29:06 +02:00
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1335 USA */
|
2003-11-02 13:00:25 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
Implementation of a bitmap type.
|
|
|
|
The idea with this is to be able to handle any constant number of bits but
|
|
|
|
also be able to use 32 or 64 bits bitmaps very efficiently
|
|
|
|
*/
|
|
|
|
|
2010-03-31 16:05:33 +02:00
|
|
|
#ifndef SQL_BITMAP_INCLUDED
|
|
|
|
#define SQL_BITMAP_INCLUDED
|
|
|
|
|
2010-05-25 22:01:38 +02:00
|
|
|
#include <my_sys.h>
|
2003-10-24 22:44:48 +02:00
|
|
|
#include <my_bitmap.h>
|
2019-05-09 17:38:22 +02:00
|
|
|
#include <my_bit.h>
|
2003-10-24 22:44:48 +02:00
|
|
|
|
2019-05-09 17:38:22 +02:00
|
|
|
template <uint width> class Bitmap
|
2003-10-24 22:44:48 +02:00
|
|
|
{
|
2019-05-09 17:38:22 +02:00
|
|
|
uint32 buffer[(width + 31) / 32];
|
2003-10-24 22:44:48 +02:00
|
|
|
public:
|
2019-05-09 17:38:22 +02:00
|
|
|
Bitmap()
|
|
|
|
{
|
|
|
|
clear_all();
|
|
|
|
}
|
|
|
|
explicit Bitmap(uint prefix)
|
|
|
|
{
|
|
|
|
set_prefix(prefix);
|
|
|
|
}
|
|
|
|
void init(uint prefix)
|
2003-10-24 22:44:48 +02:00
|
|
|
{
|
2019-05-09 17:38:22 +02:00
|
|
|
set_prefix(prefix);
|
|
|
|
}
|
2015-11-06 20:38:03 +01:00
|
|
|
|
2019-05-09 17:38:22 +02:00
|
|
|
uint length() const
|
|
|
|
{
|
|
|
|
return width;
|
|
|
|
}
|
|
|
|
void set_bit(uint n)
|
|
|
|
{
|
|
|
|
DBUG_ASSERT(n < width);
|
|
|
|
((uchar*)buffer)[n / 8] |= (1 << (n & 7));
|
|
|
|
}
|
|
|
|
void clear_bit(uint n)
|
|
|
|
{
|
|
|
|
DBUG_ASSERT(n < width);
|
|
|
|
((uchar*)buffer)[n / 8] &= ~(1 << (n & 7));
|
|
|
|
}
|
|
|
|
void set_prefix(uint prefix_size)
|
|
|
|
{
|
|
|
|
set_if_smaller(prefix_size, width);
|
|
|
|
uint prefix_bytes, prefix_bits, d;
|
|
|
|
uchar* m = (uchar*)buffer;
|
2015-11-06 20:38:03 +01:00
|
|
|
|
2019-05-09 17:38:22 +02:00
|
|
|
if ((prefix_bytes = prefix_size / 8))
|
|
|
|
memset(m, 0xff, prefix_bytes);
|
|
|
|
m += prefix_bytes;
|
|
|
|
if ((prefix_bits = prefix_size & 7))
|
2015-11-06 20:38:03 +01:00
|
|
|
{
|
2019-05-09 17:38:22 +02:00
|
|
|
*(m++) = (1 << prefix_bits) - 1;
|
|
|
|
// As the prefix bits are set, lets count this byte too as a prefix byte.
|
|
|
|
prefix_bytes++;
|
2015-11-06 20:38:03 +01:00
|
|
|
}
|
2019-05-09 17:38:22 +02:00
|
|
|
if ((d = (width + 7) / 8 - prefix_bytes))
|
|
|
|
memset(m, 0, d);
|
|
|
|
}
|
|
|
|
void set_all()
|
|
|
|
{
|
|
|
|
set_prefix(width);
|
|
|
|
}
|
|
|
|
void clear_all()
|
|
|
|
{
|
|
|
|
memset(buffer, 0x00, sizeof(buffer));
|
|
|
|
}
|
|
|
|
void intersect(Bitmap & map2)
|
|
|
|
{
|
|
|
|
for (uint i = 0; i < array_elements(buffer); i++)
|
|
|
|
buffer[i] &= map2.buffer[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
/*
|
|
|
|
Intersect with a bitmap represented as as longlong.
|
|
|
|
In addition, pad the rest of the bitmap with 0 or 1 bits
|
|
|
|
depending on pad_with_ones parameter.
|
|
|
|
*/
|
|
|
|
void intersect_and_pad(ulonglong map2buff, bool pad_with_ones)
|
|
|
|
{
|
|
|
|
compile_time_assert(sizeof(ulonglong) == 8);
|
|
|
|
uint32 tmp[2];
|
|
|
|
int8store(tmp, map2buff);
|
|
|
|
|
|
|
|
buffer[0] &= tmp[0];
|
|
|
|
if (array_elements(buffer) > 1)
|
|
|
|
buffer[1] &= tmp[1];
|
|
|
|
|
|
|
|
if (array_elements(buffer) <= 2)
|
|
|
|
return;
|
|
|
|
if (pad_with_ones)
|
2015-11-06 20:38:03 +01:00
|
|
|
{
|
2019-05-09 17:38:22 +02:00
|
|
|
memset((char*)buffer + 8, 0xff , sizeof(buffer) - 8);
|
|
|
|
if (width != sizeof(buffer) * 8)
|
|
|
|
{
|
|
|
|
((uchar*)buffer)[sizeof(buffer)-1] = last_byte_mask(width);
|
|
|
|
}
|
2015-11-06 20:38:03 +01:00
|
|
|
}
|
2019-05-09 17:38:22 +02:00
|
|
|
else
|
|
|
|
memset((char*)buffer + 8, 0 , sizeof(buffer) - 8);
|
|
|
|
|
|
|
|
}
|
2015-11-06 20:38:03 +01:00
|
|
|
|
2019-05-09 17:38:22 +02:00
|
|
|
public:
|
|
|
|
void intersect(ulonglong map2buff)
|
|
|
|
{
|
|
|
|
intersect_and_pad(map2buff, 0);
|
2003-10-24 22:44:48 +02:00
|
|
|
}
|
Bug#10932 - Building server with key limit of 128, makes test cases fail
This patch allows to configure MyISAM for 128 indexes per table.
The main problem is the key_map, wich is implemented as an ulonglong.
To get rid of the limit and keep the efficient and flexible
implementation, the highest bit is now used for all upper keys.
This means that the lower keys can be disabled and enabled
individually as usual and the high keys can only be disabled and
enabled as a block. That way the existing test suite is still
applicable, while more keys work, though slightly less efficient.
To really get more than 64 keys, some defines need to be changed.
Another patch will address this.
include/my_bitmap.h:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Added the declaration for a function that extends the highest bit value
to all upper bits of a bigger bitmap.
include/myisam.h:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed MI_MAX_POSSIBLE_KEY to what it was meant for.
Added a bunch of macros to handle the MyISAM key_map.
myisam/mi_check.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
myisam/mi_create.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
myisam/mi_delete.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
myisam/mi_extra.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
myisam/mi_open.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
Changed pointer types from signed char* to unsigned char*.
myisam/mi_preload.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
myisam/mi_rsame.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
myisam/mi_rsamepos.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
myisam/mi_search.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
myisam/mi_update.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
myisam/mi_write.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
myisam/myisamchk.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
myisam/myisamdef.h:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed pointer types from signed char* to unsigned char*.
myisam/myisamlog.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
myisam/myisampack.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
myisam/sort.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
mysys/my_bitmap.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Added a function that extends the highest bit value
to all upper bits of a bigger bitmap.
sql/ha_myisam.cc:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
sql/sql_bitmap.h:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Added a method that extends the highest bit value
to all upper bits of a bigger bitmap.
2005-07-19 14:13:56 +02:00
|
|
|
/* Use highest bit for all bits above sizeof(ulonglong)*8. */
|
|
|
|
void intersect_extended(ulonglong map2buff)
|
|
|
|
{
|
2019-05-09 17:38:22 +02:00
|
|
|
intersect_and_pad(map2buff, (map2buff & (1ULL << 63)));
|
|
|
|
}
|
|
|
|
void subtract(Bitmap & map2)
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < array_elements(buffer); i++)
|
|
|
|
buffer[i] &= ~(map2.buffer[i]);
|
|
|
|
}
|
|
|
|
void merge(Bitmap & map2)
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < array_elements(buffer); i++)
|
|
|
|
buffer[i] |= map2.buffer[i];
|
|
|
|
}
|
|
|
|
bool is_set(uint n) const
|
|
|
|
{
|
|
|
|
DBUG_ASSERT(n < width);
|
|
|
|
return ((uchar*)buffer)[n / 8] & (1 << (n & 7));
|
|
|
|
}
|
|
|
|
bool is_prefix(uint prefix_size) const
|
|
|
|
{
|
|
|
|
uint prefix_mask = last_byte_mask(prefix_size);
|
|
|
|
uchar* m = (uchar*)buffer;
|
|
|
|
uchar* end_prefix = m + (prefix_size - 1) / 8;
|
|
|
|
uchar* end;
|
|
|
|
DBUG_ASSERT(prefix_size <= width);
|
|
|
|
|
|
|
|
/* Empty prefix is always true */
|
|
|
|
if (!prefix_size)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
while (m < end_prefix)
|
|
|
|
if (*m++ != 0xff)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
end = ((uchar*)buffer) + (width + 7) / 8 - 1;
|
|
|
|
if (m == end)
|
|
|
|
return ((*m & last_byte_mask(width)) == prefix_mask);
|
|
|
|
|
|
|
|
if (*m != prefix_mask)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
while (++m < end)
|
|
|
|
if (*m != 0)
|
|
|
|
return false;
|
|
|
|
return ((*m & last_byte_mask(width)) == 0);
|
|
|
|
}
|
|
|
|
bool is_clear_all() const
|
|
|
|
{
|
|
|
|
for (size_t i= 0; i < array_elements(buffer); i++)
|
|
|
|
if (buffer[i])
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
bool is_set_all() const
|
|
|
|
{
|
|
|
|
if (width == sizeof(buffer) * 8)
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < array_elements(buffer); i++)
|
|
|
|
if (buffer[i] != 0xFFFFFFFFU)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return is_prefix(width);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool is_subset(const Bitmap & map2) const
|
|
|
|
{
|
|
|
|
for (size_t i= 0; i < array_elements(buffer); i++)
|
|
|
|
if (buffer[i] & ~(map2.buffer[i]))
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
bool is_overlapping(const Bitmap & map2) const
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < array_elements(buffer); i++)
|
|
|
|
if (buffer[i] & map2.buffer[i])
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
bool operator==(const Bitmap & map2) const
|
|
|
|
{
|
|
|
|
return memcmp(buffer, map2.buffer, sizeof(buffer)) == 0;
|
|
|
|
}
|
|
|
|
bool operator!=(const Bitmap & map2) const
|
|
|
|
{
|
|
|
|
return !(*this == map2);
|
|
|
|
}
|
2003-10-24 22:44:48 +02:00
|
|
|
char *print(char *buf) const
|
|
|
|
{
|
2005-06-01 18:33:16 +02:00
|
|
|
char *s=buf;
|
2005-06-04 21:37:18 +02:00
|
|
|
const uchar *e=(uchar *)buffer, *b=e+sizeof(buffer)-1;
|
2005-06-01 18:33:16 +02:00
|
|
|
while (!*b && b>e)
|
|
|
|
b--;
|
|
|
|
if ((*s=_dig_vec_upper[*b >> 4]) != '0')
|
|
|
|
s++;
|
|
|
|
*s++=_dig_vec_upper[*b & 15];
|
|
|
|
while (--b>=e)
|
2003-10-24 22:44:48 +02:00
|
|
|
{
|
2005-06-01 18:33:16 +02:00
|
|
|
*s++=_dig_vec_upper[*b >> 4];
|
|
|
|
*s++=_dig_vec_upper[*b & 15];
|
2003-10-24 22:44:48 +02:00
|
|
|
}
|
|
|
|
*s=0;
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
ulonglong to_ulonglong() const
|
|
|
|
{
|
|
|
|
DBUG_ASSERT(sizeof(buffer) >= 4);
|
2019-05-09 17:38:22 +02:00
|
|
|
uchar *b=(uchar *)buffer;
|
|
|
|
if (sizeof(buffer) >= 8)
|
|
|
|
return uint8korr(b);
|
|
|
|
return (ulonglong) uint4korr(b);
|
2003-10-24 22:44:48 +02:00
|
|
|
}
|
2010-05-26 22:18:18 +02:00
|
|
|
uint bits_set()
|
|
|
|
{
|
2019-05-09 17:38:22 +02:00
|
|
|
uint res = 0;
|
|
|
|
for (size_t i = 0; i < array_elements(buffer); i++)
|
|
|
|
res += my_count_bits_uint32(buffer[i]);
|
|
|
|
return res;
|
2010-05-26 22:18:18 +02:00
|
|
|
}
|
2015-11-06 20:38:03 +01:00
|
|
|
class Iterator
|
|
|
|
{
|
|
|
|
Bitmap ↦
|
|
|
|
uint no;
|
|
|
|
public:
|
2019-05-09 17:38:22 +02:00
|
|
|
Iterator(Bitmap<width> &map2): map(map2), no(0) {}
|
2015-11-06 20:38:03 +01:00
|
|
|
int operator++(int) {
|
2019-05-09 17:38:22 +02:00
|
|
|
if (no == width) return BITMAP_END;
|
2015-11-06 20:38:03 +01:00
|
|
|
while (!map.is_set(no))
|
|
|
|
{
|
2019-05-09 17:38:22 +02:00
|
|
|
if ((++no) == width) return BITMAP_END;
|
2015-11-06 20:38:03 +01:00
|
|
|
}
|
2019-05-09 17:38:22 +02:00
|
|
|
return no++;
|
2015-11-06 20:38:03 +01:00
|
|
|
}
|
2019-05-09 17:38:22 +02:00
|
|
|
enum { BITMAP_END = width };
|
2015-11-06 20:38:03 +01:00
|
|
|
};
|
2003-10-24 22:44:48 +02:00
|
|
|
};
|
|
|
|
|
2018-04-29 16:39:48 +02:00
|
|
|
/* An iterator to quickly walk over bits in ulonglong bitmap. */
|
2009-08-13 00:34:21 +02:00
|
|
|
class Table_map_iterator
|
|
|
|
{
|
|
|
|
ulonglong bmp;
|
|
|
|
uint no;
|
|
|
|
public:
|
|
|
|
Table_map_iterator(ulonglong t) : bmp(t), no(0) {}
|
2018-04-29 16:39:48 +02:00
|
|
|
uint next_bit()
|
2009-08-13 00:34:21 +02:00
|
|
|
{
|
2018-04-29 16:39:48 +02:00
|
|
|
static const uchar last_bit[16]= {32, 0, 1, 0,
|
2009-08-13 00:34:21 +02:00
|
|
|
2, 0, 1, 0,
|
|
|
|
3, 0, 1, 0,
|
|
|
|
2, 0, 1, 0};
|
|
|
|
uint bit;
|
|
|
|
while ((bit= last_bit[bmp & 0xF]) == 32)
|
|
|
|
{
|
|
|
|
no += 4;
|
|
|
|
bmp= bmp >> 4;
|
|
|
|
if (!bmp)
|
|
|
|
return BITMAP_END;
|
|
|
|
}
|
2018-04-29 16:39:48 +02:00
|
|
|
bmp &= ~(1ULL << bit);
|
2009-08-13 00:34:21 +02:00
|
|
|
return no + bit;
|
|
|
|
}
|
2018-04-29 16:39:48 +02:00
|
|
|
uint operator++(int) { return next_bit(); }
|
2009-08-13 00:34:21 +02:00
|
|
|
enum { BITMAP_END= 64 };
|
|
|
|
};
|
|
|
|
|
2003-10-24 22:44:48 +02:00
|
|
|
template <> class Bitmap<64>
|
|
|
|
{
|
|
|
|
ulonglong map;
|
|
|
|
public:
|
|
|
|
Bitmap<64>() { }
|
2003-11-21 17:16:19 +01:00
|
|
|
explicit Bitmap<64>(uint prefix_to_set) { set_prefix(prefix_to_set); }
|
2003-10-24 22:44:48 +02:00
|
|
|
void init(uint prefix_to_set) { set_prefix(prefix_to_set); }
|
|
|
|
uint length() const { return 64; }
|
|
|
|
void set_bit(uint n) { map|= ((ulonglong)1) << n; }
|
|
|
|
void clear_bit(uint n) { map&= ~(((ulonglong)1) << n); }
|
|
|
|
void set_prefix(uint n)
|
|
|
|
{
|
|
|
|
if (n >= length())
|
|
|
|
set_all();
|
|
|
|
else
|
|
|
|
map= (((ulonglong)1) << n)-1;
|
|
|
|
}
|
|
|
|
void set_all() { map=~(ulonglong)0; }
|
|
|
|
void clear_all() { map=(ulonglong)0; }
|
|
|
|
void intersect(Bitmap<64>& map2) { map&= map2.map; }
|
|
|
|
void intersect(ulonglong map2) { map&= map2; }
|
Bug#10932 - Building server with key limit of 128, makes test cases fail
This patch allows to configure MyISAM for 128 indexes per table.
The main problem is the key_map, wich is implemented as an ulonglong.
To get rid of the limit and keep the efficient and flexible
implementation, the highest bit is now used for all upper keys.
This means that the lower keys can be disabled and enabled
individually as usual and the high keys can only be disabled and
enabled as a block. That way the existing test suite is still
applicable, while more keys work, though slightly less efficient.
To really get more than 64 keys, some defines need to be changed.
Another patch will address this.
include/my_bitmap.h:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Added the declaration for a function that extends the highest bit value
to all upper bits of a bigger bitmap.
include/myisam.h:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed MI_MAX_POSSIBLE_KEY to what it was meant for.
Added a bunch of macros to handle the MyISAM key_map.
myisam/mi_check.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
myisam/mi_create.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
myisam/mi_delete.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
myisam/mi_extra.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
myisam/mi_open.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
Changed pointer types from signed char* to unsigned char*.
myisam/mi_preload.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
myisam/mi_rsame.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
myisam/mi_rsamepos.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
myisam/mi_search.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
myisam/mi_update.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
myisam/mi_write.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
myisam/myisamchk.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
myisam/myisamdef.h:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed pointer types from signed char* to unsigned char*.
myisam/myisamlog.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
myisam/myisampack.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
myisam/sort.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
mysys/my_bitmap.c:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Added a function that extends the highest bit value
to all upper bits of a bigger bitmap.
sql/ha_myisam.cc:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Changed key_map access to use the new macros.
sql/sql_bitmap.h:
Bug#10932 - Building server with key limit of 128, makes test cases fail
Added a method that extends the highest bit value
to all upper bits of a bigger bitmap.
2005-07-19 14:13:56 +02:00
|
|
|
void intersect_extended(ulonglong map2) { map&= map2; }
|
2003-10-24 22:44:48 +02:00
|
|
|
void subtract(Bitmap<64>& map2) { map&= ~map2.map; }
|
|
|
|
void merge(Bitmap<64>& map2) { map|= map2.map; }
|
2014-02-19 11:05:15 +01:00
|
|
|
bool is_set(uint n) const { return MY_TEST(map & (((ulonglong) 1) << n)); }
|
2010-09-24 00:00:32 +02:00
|
|
|
bool is_prefix(uint n) const { return map == (((ulonglong)1) << n)-1; }
|
|
|
|
bool is_clear_all() const { return map == (ulonglong)0; }
|
|
|
|
bool is_set_all() const { return map == ~(ulonglong)0; }
|
|
|
|
bool is_subset(const Bitmap<64>& map2) const { return !(map & ~map2.map); }
|
|
|
|
bool is_overlapping(const Bitmap<64>& map2) const { return (map & map2.map)!= 0; }
|
|
|
|
bool operator==(const Bitmap<64>& map2) const { return map == map2.map; }
|
2018-04-29 16:39:48 +02:00
|
|
|
char *print(char *buf) const {
|
|
|
|
longlong2str(longlong(map), buf, 16);
|
|
|
|
return buf;
|
|
|
|
}
|
2003-10-24 22:44:48 +02:00
|
|
|
ulonglong to_ulonglong() const { return map; }
|
2009-08-13 00:34:21 +02:00
|
|
|
class Iterator : public Table_map_iterator
|
|
|
|
{
|
|
|
|
public:
|
2015-07-06 19:24:14 +02:00
|
|
|
Iterator(Bitmap<64> &map2) : Table_map_iterator(map2.map) {}
|
2009-08-13 00:34:21 +02:00
|
|
|
};
|
2010-05-26 22:18:18 +02:00
|
|
|
uint bits_set()
|
|
|
|
{
|
|
|
|
//TODO: use my_count_bits()
|
|
|
|
uint res= 0, i= 0;
|
|
|
|
for (; i < 64 ; i++)
|
|
|
|
{
|
|
|
|
if (map & ((ulonglong)1<<i))
|
|
|
|
res++;
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
2003-10-24 22:44:48 +02:00
|
|
|
};
|
|
|
|
|
2019-05-09 17:38:22 +02:00
|
|
|
#if MAX_INDEXES <= 64
|
|
|
|
typedef Bitmap<64> key_map; /* Used for finding keys */
|
|
|
|
#elif MAX_INDEXES > 128
|
|
|
|
#error "MAX_INDEXES values greater than 128 is not supported."
|
|
|
|
#else
|
|
|
|
typedef Bitmap<((MAX_INDEXES+7)/8*8)> key_map; /* Used for finding keys */
|
|
|
|
#endif
|
2010-03-31 16:05:33 +02:00
|
|
|
|
|
|
|
#endif /* SQL_BITMAP_INCLUDED */
|