~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/memory/hp_hash.cc

Remove support for 3 byte indexes (we don't have 3 byte types, this is
mainly just a cleanup for anyone who ever tries to read the code).

Show diffs side-by-side

added added

removed removed

Lines of Context:
562
562
  case HA_KEYTYPE_ULONG_INT:
563
563
    value=(uint64_t) uint4korr(key);
564
564
    break;
565
 
  case HA_KEYTYPE_UINT24:
566
 
    value=(uint64_t) uint3korr(key);
567
 
    break;
568
565
  case HA_KEYTYPE_DOUBLE:                       /* This shouldn't be used */
569
566
  {
570
567
    double f_1;