~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Patrick Galbraith
  • Date: 2008-08-22 20:19:13 UTC
  • mfrom: (365.1.2 drizzle)
  • Revision ID: patg@radha.local-20080822201913-njjzdfrlihco6ap1
Merge with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1513
1513
                      "Some pointers may be invalid and cause the "
1514
1514
                      "dump to abort...\n"));
1515
1515
    safe_print_str("thd->query", thd->query, 1024);
1516
 
    fprintf(stderr, "thd->thread_id=%lu\n", (uint32_t) thd->thread_id);
 
1516
    fprintf(stderr, "thd->thread_id=%"PRIu32"\n", (uint32_t) thd->thread_id);
1517
1517
    fprintf(stderr, "thd->killed=%s\n", kreason);
1518
1518
  }
1519
1519
  fflush(stderr);
3805
3805
      "return an error."),
3806
3806
   (char**) &global_system_variables.max_join_size,
3807
3807
   (char**) &max_system_variables.max_join_size, 0, GET_HA_ROWS, REQUIRED_ARG,
3808
 
   ~0L, 1, ~0L, 0, 1, 0},
 
3808
   INT32_MAX, 1, INT32_MAX, 0, 1, 0},
3809
3809
  {"max_length_for_sort_data", OPT_MAX_LENGTH_FOR_SORT_DATA,
3810
3810
   N_("Max number of bytes in sorted records."),
3811
3811
   (char**) &global_system_variables.max_length_for_sort_data,
3880
3880
      "REPAIR or when creating indexes with CREATE INDEX or ALTER TABLE."),
3881
3881
   (char**) &global_system_variables.myisam_sort_buff_size,
3882
3882
   (char**) &max_system_variables.myisam_sort_buff_size, 0,
3883
 
   GET_ULONG, REQUIRED_ARG, 8192*1024, 4, ~0L, 0, 1, 0},
 
3883
   GET_ULONG, REQUIRED_ARG, 8192*1024, 4, INT32_MAX, 0, 1, 0},
3884
3884
  {"myisam_stats_method", OPT_MYISAM_STATS_METHOD,
3885
3885
   N_("Specifies how MyISAM index statistics collection code should threat "
3886
3886
      "NULLs. Possible values of name are 'nulls_unequal' "