~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.cc

  • Committer: Monty Taylor
  • Date: 2009-05-08 19:07:39 UTC
  • mto: This revision was merged to the branch mainline in revision 1009.
  • Revision ID: mordred@inaugust.com-20090508190739-rwas5y9xjg1a92p6
Reverted a crap-ton of padraig's work.

Show diffs side-by-side

added added

removed removed

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