~linuxjedi/drizzle/drizzle-bug-647360

« back to all changes in this revision

Viewing changes to drizzled/create_field.cc

  • Committer: lbieber
  • Date: 2010-09-23 15:49:15 UTC
  • mfrom: (1788.1.3 build)
  • Revision ID: lbieber@orisndriz08-20100923154915-mshh9pwln0igdwrn
Merge Brian - Rollup patch of enum + style on varchar. This modifies enum to always being the same value.
Merge Stewart - Fix embedded_innodb plugin now that TIMESTAMP is 8 bytes. 
Merge Shrews - fix bug 643630 -  Transaction_reader not handling CHAR values that include quotes properly

Show diffs side-by-side

added added

removed removed

Lines of Context:
355
355
    case DRIZZLE_TYPE_ENUM:
356
356
      {
357
357
        /* Should be safe. */
358
 
        pack_length= get_enum_pack_length(fld_interval_list->elements);
 
358
        pack_length= 4;
359
359
 
360
360
        List_iterator<String> it(*fld_interval_list);
361
361
        String *tmp;