~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/heap/hp_rkey.c

  • Committer: Monty Taylor
  • Date: 2008-07-05 16:19:09 UTC
  • mto: This revision was merged to the branch mainline in revision 63.
  • Revision ID: monty@inaugust.com-20080705161909-v2xge1mp52wuex3u
Removed HA_END_SPACE_KEY and references to it. It was _supposed_ to be gone anyway, but the ifdef around it was broken (MYSQL_VERSION_ID was actually undefined.)

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
      info->update= 0;
64
64
      DBUG_RETURN(my_errno);
65
65
    }
66
 
    if (!(keyinfo->flag & HA_NOSAME) || (keyinfo->flag & HA_END_SPACE_KEY))
 
66
    if (!(keyinfo->flag & HA_NOSAME))
67
67
      memcpy(info->lastkey, key, (size_t) keyinfo->length);
68
68
  }
69
69
  memcpy(record, pos, (size_t) share->reclength);