~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/opt_range.h

  • Committer: Brian Aker
  • Date: 2008-08-19 15:11:04 UTC
  • mfrom: (327.2.6 drizzle-good)
  • Revision ID: brian@gir.tangent.org-20080819151104-uxk5lgoaj0fwgx9z
Merge of Brian's tree to main tree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
/* classes to use when handling where clause */
18
18
 
19
 
#ifndef _opt_range_h
20
 
#define _opt_range_h
 
19
#ifndef DRIZZLED_OPT_RANGE_H
 
20
#define DRIZZLED_OPT_RANGE_H
21
21
 
22
22
#ifdef USE_PRAGMA_INTERFACE
23
23
#pragma interface                       /* gcc class implementation */
718
718
QUICK_RANGE_SELECT *get_quick_select_for_ref(THD *thd, Table *table,
719
719
                                             struct st_table_ref *ref,
720
720
                                             ha_rows records);
721
 
uint get_index_for_order(Table *table, ORDER *order, ha_rows limit);
 
721
uint get_index_for_order(Table *table, order_st *order, ha_rows limit);
722
722
 
723
723
#endif