~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/key_map.h

  • Committer: Eric Lambert
  • Date: 2009-06-11 21:19:36 UTC
  • mto: (1061.1.1 merge-all)
  • mto: This revision was merged to the branch mainline in revision 1062.
  • Revision ID: eric.d.lambert@gmail.com-20090611211936-g2gij43xakupz1dw
-removed rm_dir_w_symlink method call with rmdir since dir should not be a sym link in the first place.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef DRIZZLED_KEY_MAP_H
21
21
#define DRIZZLED_KEY_MAP_H
22
22
 
 
23
#include <drizzled/global.h>
23
24
#include <drizzled/definitions.h>
24
25
 
25
26
#include <bitset>
26
27
 
27
 
namespace drizzled
28
 
{
29
 
 
30
28
/* Used for finding keys */
31
29
#if MAX_INDEXES <= 64
32
30
typedef std::bitset<72> key_map;
43
41
void set_prefix(key_map& map, const uint32_t n);
44
42
void key_map_subtract(key_map& map1, key_map& map2);
45
43
 
46
 
} /* namespace drizzled */
47
 
 
48
 
#endif /* DRIZZLED_KEY_MAP_H */
 
44
#endif