207
207
if (options.has_row_type())
208
208
cout << " ROW_TYPE = " << options.row_type() << endl;
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;
210
if (options.has_data_file_name())
211
cout << " DATA_FILE_NAME = '" << options.data_file_name() << "'" << endl;
213
if (options.has_index_file_name())
214
cout << " INDEX_FILE_NAME = '" << options.index_file_name() << "'" << endl;
216
if (options.has_max_rows())
217
cout << " MAX_ROWS = " << options.max_rows() << endl;
219
if (options.has_min_rows())
220
cout << " MIN_ROWS = " << options.min_rows() << endl;
222
if (options.has_auto_increment_value())
223
cout << " AUTO_INCREMENT = " << options.auto_increment_value() << endl;
225
if (options.has_avg_row_length())
226
cout << " AVG_ROW_LENGTH = " << options.avg_row_length() << endl;
228
if (options.has_key_block_size())
229
cout << " KEY_BLOCK_SIZE = " << options.key_block_size() << endl;
231
if (options.has_block_size())
232
cout << " BLOCK_SIZE = " << options.block_size() << endl;
234
if (options.has_comment())
235
cout << " COMMENT = '" << options.comment() << "'" << endl;
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;