~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/myisampack.c

  • Committer: Brian Aker
  • Date: 2008-07-11 17:17:17 UTC
  • mfrom: (77.1.79 codestyle)
  • Revision ID: brian@tangent.org-20080711171717-039qp03g93w70rlq
MergeĀ 

Show diffs side-by-side

added added

removed removed

Lines of Context:
254
254
   0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
255
255
#endif
256
256
  {"backup", 'b', "Make a backup of the table as table_name.OLD.",
257
 
   (uchar**) &backup, (uchar**) &backup, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
 
257
   (char**) &backup, (char**) &backup, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
258
258
  {"character-sets-dir", OPT_CHARSETS_DIR_MP,
259
 
   "Directory where character sets are.", (uchar**) &charsets_dir,
260
 
   (uchar**) &charsets_dir, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
 
259
   "Directory where character sets are.", (char**) &charsets_dir,
 
260
   (char**) &charsets_dir, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
261
261
  {"debug", '#', "Output debug log. Often this is 'd:t:o,filename'.",
262
262
   0, 0, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
263
263
  {"force", 'f',
265
265
   0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
266
266
  {"join", 'j',
267
267
   "Join all given tables into 'new_table_name'. All tables MUST have identical layouts.",
268
 
   (uchar**) &join_table, (uchar**) &join_table, 0, GET_STR, REQUIRED_ARG, 0, 0, 0,
 
268
   (char**) &join_table, (char**) &join_table, 0, GET_STR, REQUIRED_ARG, 0, 0, 0,
269
269
   0, 0, 0},
270
270
  {"help", '?', "Display this help and exit.",
271
271
   0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
279
279
   0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
280
280
  {"version", 'V', "Output version information and exit.",
281
281
   0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
282
 
  {"wait", 'w', "Wait and retry if table is in use.", (uchar**) &opt_wait,
283
 
   (uchar**) &opt_wait, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
 
282
  {"wait", 'w', "Wait and retry if table is in use.", (char**) &opt_wait,
 
283
   (char**) &opt_wait, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
284
284
  { 0, 0, 0, 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0}
285
285
};
286
286