~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler.h

  • Committer: Brian Aker
  • Date: 2009-05-21 00:57:05 UTC
  • mto: This revision was merged to the branch mainline in revision 1032.
  • Revision ID: brian@gaz-20090521005705-rpq4hzhy761d3wbj
Straighten out structures (remove some some dead bits).

Show diffs side-by-side

added added

removed removed

Lines of Context:
182
182
 
183
183
  /** true <=> we're currently traversing a range in mrr_cur_range. */
184
184
  bool mrr_have_range;
 
185
 
 
186
  bool eq_range;
 
187
  /*
 
188
    true <=> the engine guarantees that returned records are within the range
 
189
    being scanned.
 
190
  */
 
191
  bool in_range_check_pushed_down;
 
192
 
185
193
  /** Current range (the one we're now returning rows from) */
186
194
  KEY_MULTI_RANGE mrr_cur_range;
187
195
 
189
197
  key_range save_end_range, *end_range;
190
198
  KEY_PART_INFO *range_key_part;
191
199
  int key_compare_result_on_equal;
192
 
  bool eq_range;
193
 
  /*
194
 
    true <=> the engine guarantees that returned records are within the range
195
 
    being scanned.
196
 
  */
197
 
  bool in_range_check_pushed_down;
198
200
 
199
201
  uint32_t errkey;                              /* Last dup key */
200
202
  uint32_t key_used_on_scan;