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>
|
|
|
|
|
|
|
|
template <uint default_width> class Bitmap
|
|
|
|
{
|
|
|
|
MY_BITMAP map;
|
2005-05-12 11:20:50 +02:00
|
|
|
uint32 buffer[(default_width+31)/32];
|
2003-10-24 22:44:48 +02:00
|
|
|
public:
|
|
|
|
Bitmap() { init(); }
|
2005-06-01 18:33:16 +02:00
|
|
|
Bitmap(const Bitmap& from) { *this=from; }
|
2003-11-21 17:16:19 +01:00
|
|
|
explicit Bitmap(uint prefix_to_set) { init(prefix_to_set); }
|
2014-01-02 10:19:19 +01:00
|
|
|
void init() { my_bitmap_init(&map, buffer, default_width, 0); }
|
2003-10-24 22:44:48 +02:00
|
|
|
void init(uint prefix_to_set) { init(); set_prefix(prefix_to_set); }
|
|
|
|
uint length() const { return default_width; }
|
|
|
|
Bitmap& operator=(const Bitmap& map2)
|
|
|
|
{
|
|
|
|
init();
|
|
|
|
memcpy(buffer, map2.buffer, sizeof(buffer));
|
2003-10-30 19:17:57 +01:00
|
|
|
return *this;
|
2003-10-24 22:44:48 +02:00
|
|
|
}
|
|
|
|
void set_bit(uint n) { bitmap_set_bit(&map, n); }
|
|
|
|
void clear_bit(uint n) { bitmap_clear_bit(&map, n); }
|
|
|
|
void set_prefix(uint n) { bitmap_set_prefix(&map, n); }
|
|
|
|
void set_all() { bitmap_set_all(&map); }
|
|
|
|
void clear_all() { bitmap_clear_all(&map); }
|
|
|
|
void intersect(Bitmap& map2) { bitmap_intersect(&map, &map2.map); }
|
|
|
|
void intersect(ulonglong map2buff)
|
|
|
|
{
|
2015-11-06 20:38:03 +01:00
|
|
|
// Use a spearate temporary buffer, as bitmap_init() clears all the bits.
|
|
|
|
ulonglong buf2;
|
2003-10-24 22:44:48 +02:00
|
|
|
MY_BITMAP map2;
|
2015-11-06 20:38:03 +01:00
|
|
|
|
|
|
|
my_bitmap_init(&map2, (uint32 *) &buf2, sizeof(ulonglong) * 8, 0);
|
|
|
|
|
|
|
|
// Store the original bits.
|
|
|
|
if (sizeof(ulonglong) >= 8)
|
|
|
|
{
|
|
|
|
int8store(const_cast<uchar *>(static_cast<uchar *>
|
|
|
|
(static_cast<void *>(&buf2))),
|
|
|
|
map2buff);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
DBUG_ASSERT(sizeof(buffer) >= 4);
|
|
|
|
int4store(const_cast<uchar *>(static_cast<uchar *>
|
|
|
|
(static_cast<void *>(&buf2))),
|
|
|
|
static_cast<uint32>(map2buff));
|
|
|
|
}
|
|
|
|
|
2003-10-24 22:44:48 +02:00
|
|
|
bitmap_intersect(&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
|
|
|
/* Use highest bit for all bits above sizeof(ulonglong)*8. */
|
|
|
|
void intersect_extended(ulonglong map2buff)
|
|
|
|
{
|
|
|
|
intersect(map2buff);
|
2005-07-20 00:40:49 +02:00
|
|
|
if (map.n_bits > sizeof(ulonglong) * 8)
|
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
|
|
|
bitmap_set_above(&map, sizeof(ulonglong),
|
2014-02-19 11:05:15 +01:00
|
|
|
MY_TEST(map2buff & (1LL << (sizeof(ulonglong) * 8 - 1))));
|
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
|
|
|
}
|
2003-10-24 22:44:48 +02:00
|
|
|
void subtract(Bitmap& map2) { bitmap_subtract(&map, &map2.map); }
|
|
|
|
void merge(Bitmap& map2) { bitmap_union(&map, &map2.map); }
|
2010-09-24 00:00:32 +02:00
|
|
|
bool is_set(uint n) const { return bitmap_is_set(&map, n); }
|
|
|
|
bool is_prefix(uint n) const { return bitmap_is_prefix(&map, n); }
|
|
|
|
bool is_clear_all() const { return bitmap_is_clear_all(&map); }
|
|
|
|
bool is_set_all() const { return bitmap_is_set_all(&map); }
|
|
|
|
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); }
|
2013-09-06 22:31:30 +02:00
|
|
|
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
|
|
|
|
{
|
|
|
|
if (sizeof(buffer) >= 8)
|
2015-11-06 20:38:03 +01:00
|
|
|
return uint8korr(static_cast<const uchar *>
|
|
|
|
(static_cast<const void *>(buffer)));
|
2003-10-24 22:44:48 +02:00
|
|
|
DBUG_ASSERT(sizeof(buffer) >= 4);
|
2015-11-06 20:38:03 +01:00
|
|
|
return (ulonglong)
|
|
|
|
uint4korr(static_cast<const uchar *>
|
|
|
|
(static_cast<const void *>(buffer)));
|
2003-10-24 22:44:48 +02:00
|
|
|
}
|
2010-05-26 22:18:18 +02:00
|
|
|
uint bits_set()
|
|
|
|
{
|
|
|
|
return bitmap_bits_set(&map);
|
|
|
|
}
|
2015-11-06 20:38:03 +01:00
|
|
|
class Iterator
|
|
|
|
{
|
|
|
|
Bitmap ↦
|
|
|
|
uint no;
|
|
|
|
public:
|
|
|
|
Iterator(Bitmap<default_width> &map2): map(map2), no(0) {}
|
|
|
|
int operator++(int) {
|
|
|
|
if (no == default_width) return BITMAP_END;
|
|
|
|
while (!map.is_set(no))
|
|
|
|
{
|
|
|
|
if ((++no) == default_width) return BITMAP_END;
|
|
|
|
}
|
|
|
|
return no ++;
|
|
|
|
}
|
|
|
|
enum { BITMAP_END= default_width };
|
|
|
|
};
|
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() { }
|
|
|
|
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
|
|
|
};
|
|
|
|
|
2010-03-31 16:05:33 +02:00
|
|
|
|
|
|
|
#endif /* SQL_BITMAP_INCLUDED */
|