~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to drizzled/optimizer/sel_arg.h

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-10-02 14:17:48 UTC
  • mfrom: (1.1.1 upstream)
  • mto: (2.1.17 sid)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20101002141748-m6vbfbfjhrw1153e
Tags: 2010.09.1802-1
* New upstream release.
* Removed pid-file argument hack.
* Updated GPL-2 address to be new address.
* Directly copy in drizzledump.1 since debian doesn't have sphinx 1.0 yet.
* Link to jquery from libjs-jquery. Add it as a depend.
* Add drizzled.8 symlink to the install files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
201
201
class SEL_ARG :public memory::SqlAlloc
202
202
{
203
203
public:
204
 
  uint8_t min_flag;
205
 
  uint8_t max_flag;
206
 
  uint8_t maybe_flag;
 
204
  uint8_t min_flag,max_flag,maybe_flag;
207
205
  uint8_t part;                                 // Which key part
208
206
  uint8_t maybe_null;
209
207
  /*
228
226
  SEL_ARG *next,*prev;    /* Links for bi-directional interval list */
229
227
  SEL_ARG *parent;        /* R-B tree parent */
230
228
  SEL_ARG *next_key_part;
231
 
 
232
 
  enum leaf_color 
233
 
  { 
234
 
    BLACK,
235
 
    RED 
236
 
  } color;
237
 
 
238
 
  enum Type 
239
 
  { 
240
 
    IMPOSSIBLE, 
241
 
    MAYBE, 
242
 
    MAYBE_KEY, 
243
 
    KEY_RANGE 
244
 
  } type;
 
229
  enum leaf_color { BLACK,RED } color;
 
230
  enum Type { IMPOSSIBLE, MAYBE, MAYBE_KEY, KEY_RANGE } type;
245
231
 
246
232
  enum 
247
233
  {