~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_bitmap.h

Merged Padraig from lp:~posulliv/drizzle/code-cleanup-c++-use-bitset

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
#include <drizzled/util/test.h>
32
32
#include <drizzled/key_map.h>
33
33
 
 
34
#include <bitset>
 
35
 
34
36
 
35
37
typedef uint64_t table_map;          /* Used for table bits in join */
36
38
typedef uint32_t nesting_map;  /* Used for flags of nesting constructs */
37
39
 
38
 
/*
39
 
  Used to identify NESTED_JOIN structures within a join (applicable only to
40
 
  structures that have not been simplified away and embed more the one
41
 
  element)
42
 
*/
43
 
typedef uint64_t nested_join_map; /* Needed by sql_select.h and table.h */
44
 
 
45
40
#endif /* _SQL_BITMAP_H_ */