~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler.h

  • Committer: Monty Taylor
  • Date: 2009-03-25 08:39:58 UTC
  • mto: (960.5.2 mordred)
  • mto: This revision was merged to the branch mainline in revision 964.
  • Revision ID: mordred@inaugust.com-20090325083958-5gp7pps4c9id7xol
More naming fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
165
165
 
166
166
  ha_rows estimation_rows_to_insert;
167
167
public:
168
 
  StorageEngine *ht;                 /* storage engine of this handler */
169
 
  unsigned char *ref;                           /* Pointer to current row */
 
168
  StorageEngine *engine;      /* storage engine of this handler */
 
169
  unsigned char *ref;                           /* Pointer to current row */
170
170
  unsigned char *dup_ref;                       /* Pointer to duplicate row */
171
171
 
172
172
  ha_statistics stats;
230
230
  */
231
231
  Discrete_interval auto_inc_interval_for_cur_row;
232
232
 
233
 
  handler(StorageEngine *ht_arg, TABLE_SHARE *share_arg)
 
233
  handler(StorageEngine *engine_arg, TABLE_SHARE *share_arg)
234
234
    :table_share(share_arg), table(0),
235
 
    estimation_rows_to_insert(0), ht(ht_arg),
 
235
    estimation_rows_to_insert(0), engine(engine_arg),
236
236
    ref(0), in_range_check_pushed_down(false),
237
237
    key_used_on_scan(MAX_KEY), active_index(MAX_KEY),
238
238
    ref_length(sizeof(my_off_t)),
1155
1155
int ha_release_savepoint(Session *session, SAVEPOINT *sv);
1156
1156
 
1157
1157
/* these are called by storage engines */
1158
 
void trans_register_ha(Session *session, bool all, StorageEngine *ht);
 
1158
void trans_register_ha(Session *session, bool all, StorageEngine *engine);
1159
1159
 
1160
1160
void table_case_convert(char * name, uint32_t length);
1161
1161
const char *table_case_name(HA_CREATE_INFO *info, const char *name);