~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/mi_update.cc

  • Committer: Monty Taylor
  • Date: 2009-12-15 19:19:16 UTC
  • mto: (1241.14.1 out-of-tree)
  • mto: This revision was merged to the branch mainline in revision 1250.
  • Revision ID: mordred@inaugust.com-20091215191916-8wz3s0eojmkpzuy4
Put my_off_t back... but this time localized only to myisam and mysys.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
int mi_update(register MI_INFO *info, const unsigned char *oldrec, unsigned char *newrec)
22
22
{
23
23
  int flag,key_changed,save_errno;
24
 
  register uint64_t pos;
 
24
  register my_off_t pos;
25
25
  uint32_t i;
26
26
  unsigned char old_key[MI_MAX_KEY_BUFF],*new_key;
27
27
  bool auto_key_changed=0;
123
123
    */
124
124
    MI_STATUS_INFO state;
125
125
    ha_rows org_split;
126
 
    uint64_t org_delete_link;
 
126
    my_off_t org_delete_link;
127
127
 
128
128
    memcpy(&state, info->state, sizeof(state));
129
129
    org_split=       share->state.split;