~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/mysqlcheck.c

  • Committer: Stewart Smith
  • Date: 2008-06-30 05:33:25 UTC
  • mfrom: (12.2.8 drizzle)
  • mto: This revision was merged to the branch mainline in revision 19.
  • Revision ID: stewart@flamingspork.com-20080630053325-mwrv6bjaufcpvj8n
merge my work

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
   "Instead of issuing one query for each table, use one query per database, naming all tables in the database in a comma-separated list.",
64
64
   (uchar**) &opt_all_in_1, (uchar**) &opt_all_in_1, 0, GET_BOOL, NO_ARG, 0, 0, 0,
65
65
   0, 0, 0},
66
 
#ifdef __NETWARE__
67
 
  {"autoclose", OPT_AUTO_CLOSE, "Auto close the screen on exit for Netware.",
68
 
   0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
69
 
#endif
70
66
  {"auto-repair", OPT_AUTO_REPAIR,
71
67
   "If a checked table is corrupted, automatically fix it. Repairing will be done after all tables have been checked, if corrupted ones were found.",
72
68
   (uchar**) &opt_auto_repair, (uchar**) &opt_auto_repair, 0, GET_BOOL, NO_ARG, 0,
137
133
  {"password", 'p',
138
134
   "Password to use when connecting to server. If password is not given it's solicited on the tty.",
139
135
   0, 0, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
140
 
#ifdef __WIN__
141
 
  {"pipe", 'W', "Use named pipes to connect to server.", 0, 0, 0, GET_NO_ARG,
142
 
   NO_ARG, 0, 0, 0, 0, 0, 0},
143
 
#endif
144
136
  {"port", 'P', "Port number to use for connection or 0 for default to, in "
145
137
   "order of preference, my.cnf, $MYSQL_TCP_PORT, "
146
138
#if MYSQL_PORT_DEFAULT == 0
214
206
{
215
207
  printf("%s  Ver %s Distrib %s, for %s (%s)\n", my_progname, CHECK_VERSION,
216
208
   MYSQL_SERVER_VERSION, SYSTEM_TYPE, MACHINE_TYPE);
217
 
  NETWARE_SET_SCREEN_MODE(1);
218
209
} /* print_version */
219
210
 
220
211
 
252
243
               char *argument)
253
244
{
254
245
  switch(optid) {
255
 
#ifdef __NETWARE__
256
 
  case OPT_AUTO_CLOSE:
257
 
    setscreenmode(SCR_AUTOCLOSE_ON_EXIT);
258
 
    break;
259
 
#endif
260
246
  case 'a':
261
247
    what_to_do = DO_ANALYZE;
262
248
    break;
308
294
    what_to_do= DO_CHECK;
309
295
    opt_upgrade= 1;
310
296
    break;
311
 
  case 'W':
312
 
#ifdef __WIN__
313
 
    opt_protocol = MYSQL_PROTOCOL_PIPE;
314
 
#endif
315
 
    break;
316
297
  case '#':
317
298
    DBUG_PUSH(argument ? argument : "d:t:o");
318
299
    debug_check_flag= 1;