~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/handler/ha_innodb.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:
3902
3902
  case HA_KEYTYPE_BINARY:
3903
3903
    max_value = 0xFFULL;
3904
3904
    break;
3905
 
  /* MEDIUM */
3906
 
  case HA_KEYTYPE_UINT24:
3907
 
    max_value = 0xFFFFFFULL;
3908
 
    break;
3909
3905
  /* LONG */
3910
3906
  case HA_KEYTYPE_ULONG_INT:
3911
3907
    max_value = 0xFFFFFFFFULL;