~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_bitmap.h

  • Committer: Padraig O'Sullivan
  • Date: 2009-07-28 05:06:29 UTC
  • mto: (1112.1.3 merge)
  • mto: This revision was merged to the branch mainline in revision 1113.
  • Revision ID: osullivan.padraig@gmail.com-20090728050629-0gsa1dour9zja9wy
Removed the typedef for nested_join_map and instead just declare these
bitmaps as std::bitset. I don't see the need for the typedef in this
scenario...

Show diffs side-by-side

added added

removed removed

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