~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/ha_myisam.h

  • Committer: Brian Aker
  • Date: 2009-08-03 19:04:48 UTC
  • mto: (1108.2.2 merge)
  • mto: This revision was merged to the branch mainline in revision 1109.
  • Revision ID: brian@gaz-20090803190448-3arnzjk5v1takajm
Remove Insane Clown Posse (AKA... ICP...just generates bugs).

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
extern "C" {
38
38
#endif
39
39
 
40
 
bool index_cond_func_myisam(void *arg);
41
 
 
42
40
#ifdef __cplusplus
43
41
}
44
42
#endif
121
119
  int read_range_first(const key_range *start_key, const key_range *end_key,
122
120
                       bool eq_range_arg, bool sorted);
123
121
  int read_range_next();
124
 
public:
125
 
  /* Index condition pushdown implementation */
126
 
  Item *idx_cond_push(uint32_t keyno, Item* idx_cond);
127
122
private:
128
123
  key_map keys_with_parts;
129
 
  friend bool index_cond_func_myisam(void *arg);
130
124
};
131
125
 
132
126
#endif /* STORAGE_MYISAM_HA_MYISAM_H */