~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/key_map.h

  • Committer: Joe Daly
  • Date: 2010-01-06 02:20:42 UTC
  • mto: This revision was merged to the branch mainline in revision 1267.
  • Revision ID: skinny.moey@gmail.com-20100106022042-8ov23wc4aq8f9k7d
rename hash_algorithm to algorithm

Show diffs side-by-side

added added

removed removed

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