~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/key_map.cc

  • Committer: Stewart Smith
  • Author(s): Marko Mäkelä
  • Date: 2010-12-20 03:21:44 UTC
  • mto: (2021.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2022.
  • Revision ID: stewart@flamingspork.com-20101220032144-7aqh2z403u7d7bdp
Merge Revision revid:marko.makela@oracle.com-20101104131215-pfxnpidlrzd4krg0 from MySQL InnoDB

Original revid:marko.makela@oracle.com-20101104131215-pfxnpidlrzd4krg0

Original Authors: Marko Mäkelä <marko.makela@oracle.com>
Original commit message:
row_ins_index_entry(): Note that only CREATE INDEX sets foreign=FALSE.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#include <drizzled/global.h>
 
20
#include "config.h"
21
21
 
22
22
#include <drizzled/key_map.h>
23
23
 
24
 
bool is_subset(const key_map& map, const key_map& map2)
 
24
namespace drizzled
25
25
{
26
26
 
27
 
  size_t count;
28
 
  for (count= 0; count < map.size(); count++)
29
 
  {
30
 
    if (map[count] & ~map2[count])
31
 
      return true;
32
 
  }
33
 
  return false;
34
 
 
35
 
}
36
 
 
37
 
bool is_prefix(const key_map& map, const uint32_t prefix_size)
 
27
bool is_keymap_prefix(const key_map& map, const uint32_t prefix_size)
38
28
{
39
29
  size_t pos= 0;
40
30
 
41
31
  for (; pos < prefix_size; pos++)
42
 
    if (map[pos] == false)
 
32
    if (! map.test(pos))
43
33
      return false;
44
34
 
45
35
  /*TODO: huh?
49
39
  */
50
40
 
51
41
  for (; pos < map.size(); pos++)
52
 
    if (map[pos] == true)
 
42
    if (map.test(pos))
53
43
      return false;
54
44
 
55
45
  return true;
56
46
}
57
47
 
 
48
void set_prefix(key_map& map, const uint32_t prefix_size)
 
49
{
 
50
  size_t pos= 0;
 
51
 
 
52
  for (; pos < prefix_size && pos < map.size(); pos++)
 
53
  {
 
54
    map.set(pos);
 
55
  }
 
56
}
 
57
 
58
58
bool is_overlapping(const key_map& map, const key_map& map2)
59
59
{
60
60
  size_t count;
65
65
  }
66
66
  return true;
67
67
}
 
68
 
 
69
void key_map_subtract(key_map& map1, key_map& map2)
 
70
{
 
71
  map1&= map2.flip();
 
72
  map2.flip();
 
73
}
 
74
 
 
75
} /* namespace drizzled */