~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/serialize/table_reader.cc

  • Committer: Brian Aker
  • Date: 2009-02-27 18:24:12 UTC
  • mfrom: (896.4.8 nofrm896)
  • Revision ID: brian@tangent.org-20090227182412-2llu8uxo4j2o0cje
Merge Stewart

Show diffs side-by-side

added added

removed removed

Lines of Context:
207
207
  if (options.has_row_type())
208
208
    cout << " ROW_TYPE = " << options.row_type() << endl;
209
209
 
210
 
/*    optional string data_file_name = 5;
211
 
    optional string index_file_name = 6;
212
 
    optional uint64 max_rows = 7;
213
 
    optional uint64 min_rows = 8;
214
 
    optional uint64 auto_increment_value = 9;
215
 
    optional uint32 avg_row_length = 11;
216
 
    optional uint32 key_block_size = 12;
217
 
    optional uint32 block_size = 13;
218
 
    optional string comment = 14;
219
 
    optional bool pack_keys = 15;
220
 
    optional bool checksum = 16;
221
 
    optional bool page_checksum = 17;
222
 
    optional bool delay_key_write = 18;
223
 
*/
 
210
  if (options.has_data_file_name())
 
211
    cout << " DATA_FILE_NAME = '" << options.data_file_name() << "'" << endl;
 
212
 
 
213
  if (options.has_index_file_name())
 
214
    cout << " INDEX_FILE_NAME = '" << options.index_file_name() << "'" << endl;
 
215
 
 
216
  if (options.has_max_rows())
 
217
    cout << " MAX_ROWS = " << options.max_rows() << endl;
 
218
 
 
219
  if (options.has_min_rows())
 
220
    cout << " MIN_ROWS = " << options.min_rows() << endl;
 
221
 
 
222
  if (options.has_auto_increment_value())
 
223
    cout << " AUTO_INCREMENT = " << options.auto_increment_value() << endl;
 
224
 
 
225
  if (options.has_avg_row_length())
 
226
    cout << " AVG_ROW_LENGTH = " << options.avg_row_length() << endl;
 
227
 
 
228
  if (options.has_key_block_size())
 
229
    cout << " KEY_BLOCK_SIZE = "  << options.key_block_size() << endl;
 
230
 
 
231
  if (options.has_block_size())
 
232
    cout << " BLOCK_SIZE = " << options.block_size() << endl;
 
233
 
 
234
  if (options.has_comment())
 
235
    cout << " COMMENT = '" << options.comment() << "'" << endl;
 
236
 
 
237
  if (options.has_pack_keys())
 
238
    cout << " PACK_KEYS = " << options.pack_keys() << endl;
 
239
  if (options.has_pack_record())
 
240
    cout << " PACK_RECORD = " << options.pack_record() << endl;
 
241
  if (options.has_checksum())
 
242
    cout << " CHECKSUM = " << options.checksum() << endl;
 
243
  if (options.has_page_checksum())
 
244
    cout << " PAGE_CHECKSUM = " << options.page_checksum() << endl;
 
245
  if (options.has_delay_key_write())
 
246
    cout << " DELAY_KEY_WRITE = " << options.delay_key_write() << endl;
224
247
}
225
248
 
226
249