~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/mi_key.cc

  • Committer: Stewart Smith
  • Date: 2009-10-06 05:50:12 UTC
  • mto: This revision was merged to the branch mainline in revision 1170.
  • Revision ID: stewart@flamingspork.com-20091006055012-rgy3lx3lk9wb0yzu
removeĀ unusedĀ HA_KEYTYPE_INT8

Show diffs side-by-side

added added

removed removed

Lines of Context:
475
475
  const unsigned char *key= (unsigned char*) record + keyseg->start;
476
476
 
477
477
  switch (keyseg->type) {
478
 
  case HA_KEYTYPE_INT8:
479
 
    s_value= (int64_t) *(char*)key;
480
 
    break;
481
478
  case HA_KEYTYPE_BINARY:
482
479
    value=(uint64_t)  *(unsigned char*) key;
483
480
    break;