~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/table.cc

  • 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:
1251
1251
          keyinfo->extra_length+=HA_KEY_BLOB_LENGTH;
1252
1252
          key_part->store_length+=HA_KEY_BLOB_LENGTH;
1253
1253
          keyinfo->key_length+= HA_KEY_BLOB_LENGTH;
1254
 
          /*
1255
 
            Mark that there may be many matching values for one key
1256
 
            combination ('a', 'a ', 'a  '...)
1257
 
          */
1258
 
          if (!(field->flags & BINARY_FLAG))
1259
 
            keyinfo->flags|= HA_END_SPACE_KEY;
1260
1254
        }
1261
1255
        if (field->type() == MYSQL_TYPE_BIT)
1262
1256
          key_part->key_part_flag|= HA_BIT_PART;