~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/info_schema/info_schema_methods.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:
1137
1137
 
1138
1138
    ptr=option_buff;
1139
1139
 
1140
 
    if (share->getMinRows())
1141
 
    {
1142
 
      ptr= strcpy(ptr," min_rows=")+10;
1143
 
      ptr= int64_t10_to_str(share->getMinRows(), ptr, 10);
1144
 
    }
1145
 
    if (share->getMaxRows())
1146
 
    {
1147
 
      ptr= strcpy(ptr," max_rows=")+10;
1148
 
      ptr= int64_t10_to_str(share->getMaxRows(), ptr, 10);
1149
 
    }
1150
 
 
1151
 
    if (share->hasAverageRowLength())
1152
 
    {
1153
 
      ptr= strcpy(ptr," avg_row_length=")+16;
1154
 
      ptr= int64_t10_to_str(share->getAverageRowLength(), ptr, 10);
1155
 
    }
1156
1140
    if (share->db_create_options & HA_OPTION_PACK_KEYS)
1157
1141
    {
1158
1142
      ptr= strcpy(ptr," pack_keys=1")+12;