~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.cc

  • Committer: Brian Aker
  • Date: 2009-08-17 21:04:20 UTC
  • mto: (1117.1.9 merge)
  • mto: This revision was merged to the branch mainline in revision 1118.
  • Revision ID: brian@gaz-20090817210420-y7ag18gmgcy2iqy5
Remove options which are just for internal optimizations.

Show diffs side-by-side

added added

removed removed

Lines of Context:
704
704
      packet->append(buff.c_str(), buff.length());
705
705
    }
706
706
 
707
 
    if (table->s->hasMinRows() && table->s->getMinRows())
708
 
    {
709
 
      packet->append(STRING_WITH_LEN(" MIN_ROWS="));
710
 
      buff= to_string(table->s->getMinRows());
711
 
      packet->append(buff.c_str(), buff.length());
712
 
    }
713
 
    if (table->s->hasMaxRows() && table->s->getMaxRows()
714
 
        && ! table_list->schema_table)
715
 
    {
716
 
      packet->append(STRING_WITH_LEN(" MAX_ROWS="));
717
 
      buff= to_string(table->s->getMaxRows());
718
 
      packet->append(buff.c_str(), buff.length());
719
 
    }
720
 
    if (table->s->hasAverageRowLength() && table->s->getAverageRowLength())
721
 
    {
722
 
      packet->append(STRING_WITH_LEN(" AVG_ROW_LENGTH="));
723
 
      buff= to_string(table->s->getAverageRowLength());
724
 
      packet->append(buff.c_str(), buff.length());
725
 
    }
726
 
 
727
707
    if (share->db_create_options & HA_OPTION_PACK_KEYS)
728
708
      packet->append(STRING_WITH_LEN(" PACK_KEYS=1"));
729
709
    if (share->db_create_options & HA_OPTION_NO_PACK_KEYS)