~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/archive/archive_reader.cc

  • Committer: Brian Aker
  • Date: 2010-01-12 00:55:03 UTC
  • mfrom: (1259.5.16 kill-frm-mention)
  • Revision ID: brian@gaz-20100112005503-j92e68kvwkxol6ay
Merge Stewart.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
uint64_t new_auto_increment_value;
44
44
static const char *load_default_groups[]= { "archive_reader", 0 };
45
45
static char **default_argv;
46
 
int opt_check, opt_force, opt_quiet, opt_backup= 0, opt_extract_frm;
 
46
int opt_check, opt_force, opt_quiet, opt_backup= 0, opt_extract_table_message;
47
47
int opt_autoincrement;
48
48
 
49
49
int main(int argc, char *argv[])
110
110
    printf("\tLongest Row %u\n", reader_handle.longest_row);
111
111
    printf("\tShortest Row %u\n", reader_handle.shortest_row);
112
112
    printf("\tState %s\n", ( reader_handle.dirty ? "dirty" : "clean"));
113
 
    printf("\tFRM stored at %u\n", reader_handle.frm_start_pos);
 
113
    printf("\tTable protobuf message stored at %u\n",
 
114
           reader_handle.frm_start_pos);
114
115
    printf("\tComment stored at %u\n", reader_handle.comment_start_pos);
115
116
    printf("\tData starts at %u\n", (unsigned int)reader_handle.start);
116
117
    if (reader_handle.frm_start_pos)
117
 
      printf("\tFRM length %u\n", reader_handle.frm_length);
 
118
      printf("\tTable proto message length %u\n", reader_handle.frm_length);
118
119
    if (reader_handle.comment_start_pos)
119
120
    {
120
121
      char *comment =
231
232
    azclose(&writer_handle);
232
233
  }
233
234
 
234
 
  if (opt_extract_frm)
 
235
  if (opt_extract_table_message)
235
236
  {
236
237
    int frm_file;
237
238
    char *ptr;
267
268
    opt_check= 1;
268
269
    break;
269
270
  case 'e':
270
 
    opt_extract_frm= 1;
 
271
    opt_extract_table_message= 1;
271
272
    break;
272
273
  case 'f':
273
274
    opt_force= 1;
304
305
   0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
305
306
  {"check", 'c', "Check table for errors.",
306
307
   0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
307
 
  {"extract-frm", 'e',
308
 
   "Extract the frm file.",
 
308
  {"extract-table-message", 'e',
 
309
   "Extract the table protobuf message.",
309
310
   0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
310
311
  {"force", 'f',
311
312
   "Restart with -r if there are any errors in the table.",