~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzledump.cc

merge for-brian work

Show diffs side-by-side

added added

removed removed

Lines of Context:
315
315
   GET_UINT, OPT_ARG, 0, 0, DRIZZLE_OPT_MASTER_DATA_COMMENTED_SQL, 0, 0, 0},
316
316
  {"max_allowed_packet", OPT_MAX_ALLOWED_PACKET, "",
317
317
    (char**) &opt_max_allowed_packet, (char**) &opt_max_allowed_packet, 0,
318
 
    GET_ULONG, REQUIRED_ARG, 24*1024*1024, 4096,
 
318
    GET_UINT32, REQUIRED_ARG, 24*1024*1024, 4096,
319
319
   (int64_t) 2L*1024L*1024L*1024L, MALLOC_OVERHEAD, 1024, 0},
320
320
  {"net_buffer_length", OPT_NET_BUFFER_LENGTH, "",
321
321
    (char**) &opt_net_buffer_length, (char**) &opt_net_buffer_length, 0,
322
 
    GET_ULONG, REQUIRED_ARG, 1024*1024L-1025, 4096, 16*1024L*1024L,
 
322
    GET_UINT32, REQUIRED_ARG, 1024*1024L-1025, 4096, 16*1024L*1024L,
323
323
   MALLOC_OVERHEAD-1024, 1024, 0},
324
324
  {"no-autocommit", OPT_AUTOCOMMIT,
325
325
   "Wrap tables with autocommit/commit statements.",
391
391
  {"tables", OPT_TABLES, "Overrides option --databases (-B).",
392
392
   0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
393
393
  {"show-progress-size", OPT_SHOW_PROGRESS_SIZE, N_("Number of rows before each output progress report (requires --verbose)."),
394
 
   (char**) &show_progress_size, (char**) &show_progress_size, 0, GET_ULONG, REQUIRED_ARG,
 
394
   (char**) &show_progress_size, (char**) &show_progress_size, 0, GET_UINT32, REQUIRED_ARG,
395
395
   10000, 0, 0, 0, 0, 0},
396
396
#ifndef DONT_ALLOW_USER_CHANGE
397
397
  {"user", 'u', "User for login if not current user.",