~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/indexes.cc

  • Committer: lbieber
  • Date: 2010-08-30 01:09:13 UTC
  • mfrom: (1736.1.1 build)
  • Revision ID: lbieber@orisndriz03-20100830010913-uv01pcq7269v392k
Merge Monty - fix bug 625027 - data_dictionary.index_type is off-by-one

Show diffs side-by-side

added added

removed removed

Lines of Context:
142
142
      length= sizeof("FULLTEXT");
143
143
      break;
144
144
    }
145
 
    push(str, length);
 
145
    /* Subtract 1 here, because sizeof gives us the wrong amount */
 
146
    push(str, length - 1);
146
147
  }
147
148
 
148
149
 /* "INDEX_COMMENT" */