~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.cc

  • Committer: Monty Taylor
  • Date: 2009-05-09 22:13:47 UTC
  • mto: This revision was merged to the branch mainline in revision 1009.
  • Revision ID: mordred@inaugust.com-20090509221347-l712szviusbobro0
Re-added bitset<> as a replacement for Bitmap<>

Show diffs side-by-side

added added

removed removed

Lines of Context:
3280
3280
        uint32_t flags= key_part->field ? key_part->field->flags : 0;
3281
3281
        const char *pos=(char*) ((flags & NOT_NULL_FLAG) ? "" : "YES");
3282
3282
        table->field[12]->store(pos, strlen(pos), cs);
3283
 
        if (!show_table->s->keys_in_use.is_set(i))
 
3283
        if (!show_table->s->keys_in_use.test(i))
3284
3284
          table->field[14]->store(STRING_WITH_LEN("disabled"), cs);
3285
3285
        else
3286
3286
          table->field[14]->store("", 0, cs);