~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/memory/ha_heap.cc

Rollup patch of enum + style on varchar. This modifies enum to always being
the same value.

Show diffs side-by-side

added added

removed removed

Lines of Context:
738
738
      next_field_pos= seg->start + seg->length;
739
739
      if (field->type() == DRIZZLE_TYPE_VARCHAR)
740
740
      {
741
 
        next_field_pos+= (uint8_t)(((Field_varstring*)field)->length_bytes);
 
741
        next_field_pos+= (uint8_t)(((Field_varstring*)field)->pack_length_no_ptr());
742
742
      }
743
743
 
744
744
      if (next_field_pos > key_part_size) {