~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/join.h

  • Committer: Brian Aker
  • Date: 2009-08-10 16:55:06 UTC
  • mfrom: (1112.1.4 merge)
  • Revision ID: brian@gaz-20090810165506-rgqyrd7pwrmkaw3d
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#ifndef DRIZZLED_JOIN_H
28
28
#define DRIZZLED_JOIN_H
29
29
 
 
30
#include <bitset>
 
31
 
30
32
class JOIN :public Sql_alloc
31
33
{
32
34
  JOIN(const JOIN &rhs);                        /**< not implemented */
137
139
    Bitmap of nested joins embedding the position at the end of the current
138
140
    partial join (valid only during join optimizer run).
139
141
  */
140
 
  nested_join_map cur_embedding_map;
 
142
  std::bitset<64> cur_embedding_map;
141
143
 
142
144
  double best_read;
143
145
  List<Cached_item> group_fields;