~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table/instance/base.cc

  • Committer: Mark Atwood
  • Date: 2011-10-19 00:10:47 UTC
  • mfrom: (2440.2.13 rf)
  • Revision ID: me@mark.atwood.name-20111019001047-atj0u8gedphon1tb
mergeĀ lp:~olafvdspek/drizzle/refactor5

Show diffs side-by-side

added added

removed removed

Lines of Context:
975
975
      unireg_type= Field::TIMESTAMP_UN_FIELD;
976
976
    }
977
977
 
978
 
    lex_string_t comment;
979
 
    if (!pfield.has_comment())
980
 
    {
981
 
      comment.assign("", 0);
982
 
    }
983
 
    else
 
978
    str_ref comment;
 
979
    if (pfield.has_comment())
984
980
    {
985
981
      comment.assign(mem().strdup(pfield.comment()), pfield.comment().size());
986
982
    }