~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/ha_myisam.h

  • Committer: Brian Aker
  • Date: 2009-11-17 17:45:47 UTC
  • mto: This revision was merged to the branch mainline in revision 1222.
  • Revision ID: brian@gaz-20091117174547-omuu6kybq2aac5fg
Small cleanup from something Jay noticed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
  MI_INFO *file;
38
38
  char    *data_file_name, *index_file_name;
39
39
  bool can_enable_indexes;
 
40
  bool is_ordered;
40
41
  int repair(Session *session, MI_CHECK &param, bool optimize);
41
42
 
42
43
 public:
99
100
                       bool eq_range_arg, bool sorted);
100
101
  int read_range_next();
101
102
  int reset_auto_increment(uint64_t value);
 
103
 
 
104
  virtual bool isOrdered(void)
 
105
  {
 
106
    return false;
 
107
  }
 
108
 
102
109
private:
103
110
  key_map keys_with_parts;
104
111
};