~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_table.cc

  • Committer: Olaf van der Spek
  • Date: 2011-10-14 08:25:55 UTC
  • mfrom: (2433.1.6 rf1)
  • mto: This revision was merged to the branch mainline in revision 2438.
  • Revision ID: olafvdspek@gmail.com-20111014082555-6hacpwwm9i125r7g
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
931
931
    }
932
932
 
933
933
    key_info->comment.length= key->key_create_info.comment.size();
934
 
    if (key_info->comment.length > 0)
 
934
    if (key_info->comment.size() > 0)
935
935
    {
936
936
      key_info->flags|= HA_USES_COMMENT;
937
937
      key_info->comment.str= (char*)key->key_create_info.comment.data();