~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/join_table.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:
33
33
#include <drizzled/opt_range.h>
34
34
#include <drizzled/join_cache.h>
35
35
 
 
36
#include <bitset>
 
37
 
36
38
/* Values for JoinTable::packed_info */
37
39
#define TAB_INFO_HAVE_VALUE 1
38
40
#define TAB_INFO_USING_INDEX 2
191
193
  int rowid_keep_flags;
192
194
 
193
195
  /** Bitmap of nested joins this table is part of */
194
 
  nested_join_map embedding_map;
 
196
  std::bitset<64> embedding_map;
195
197
 
196
198
  void cleanup();
197
199