~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/gen_lex_hash.cc

MergedĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
 
92
92
struct my_option my_long_options[] =
93
93
{
94
 
#ifdef DBUG_OFF
95
 
  {"debug", '#', "This is a non-debug version. Catch this and exit",
96
 
   0,0, 0, GET_DISABLED, OPT_ARG, 0, 0, 0, 0, 0, 0},
97
 
#else
98
 
  {"debug", '#', "Output debug log", (uchar**) &default_dbug_option,
99
 
   (uchar**) &default_dbug_option, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
100
 
#endif
101
94
  {"help", '?', "Display help and exit",
102
95
   0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
103
96
  {"version", 'V', "Output version information and exit",
374
367
  case '?':
375
368
    usage(0);
376
369
    exit(0);
377
 
  case '#':
378
 
    DBUG_PUSH(argument ? argument : default_dbug_option);
379
 
    break;
380
370
  }
381
371
  return 0;
382
372
}
449
439
int main(int argc,char **argv)
450
440
{
451
441
  MY_INIT(argv[0]);
452
 
  DBUG_PROCESS(argv[0]);
453
442
 
454
443
  if (get_options(argc,(char **) argv))
455
444
    exit(1);
500
489
  register const char *cur_str= s;\n\
501
490
\n\
502
491
  if (len == 0) {\n\
503
 
    DBUG_PRINT(\"warning\", (\"get_hash_symbol() received a request for a zero-length symbol, which is probably a mistake.\"));\
504
492
    return(NULL);\n\
505
493
  }\n"
506
494
);