~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Monty Taylor
  • Date: 2009-01-30 04:45:55 UTC
  • mfrom: (779.4.10 devel)
  • mto: (779.7.3 devel)
  • mto: This revision was merged to the branch mainline in revision 823.
  • Revision ID: mordred@inaugust.com-20090130044555-ntb3509c8o6e3sb5
MergedĀ fromĀ me.

Show diffs side-by-side

added added

removed removed

Lines of Context:
773
773
  my_database_names_free();
774
774
  table_cache_free();
775
775
  table_def_free();
776
 
  lex_free();                           /* Free some memory */
777
776
  item_create_cleanup();
778
777
  set_var_free();
779
778
  free_charsets();
1889
1888
  unireg_init(); /* Set up extern variabels */
1890
1889
  if (init_errmessage())        /* Read error messages from file */
1891
1890
    return 1;
1892
 
  lex_init();
1893
1891
  if (item_create_init())
1894
1892
    return 1;
1895
1893
  if (set_var_init())
2637
2635
  {"auto-increment-increment", OPT_AUTO_INCREMENT,
2638
2636
   N_("Auto-increment columns are incremented by this"),
2639
2637
   (char**) &global_system_variables.auto_increment_increment,
2640
 
   (char**) &max_system_variables.auto_increment_increment, 0, GET_UINT,
2641
 
   OPT_ARG, 1, 1, 65535, 0, 1, 0 },
 
2638
   (char**) &max_system_variables.auto_increment_increment, 0, GET_ULL,
 
2639
   OPT_ARG, 1, 1, UINT64_MAX, 0, 1, 0 },
2642
2640
  {"auto-increment-offset", OPT_AUTO_INCREMENT_OFFSET,
2643
2641
   N_("Offset added to Auto-increment columns. Used when "
2644
2642
      "auto-increment-increment != 1"),
2645
2643
   (char**) &global_system_variables.auto_increment_offset,
2646
 
   (char**) &max_system_variables.auto_increment_offset, 0, GET_UINT, OPT_ARG,
2647
 
   1, 1, 65535, 0, 1, 0 },
 
2644
   (char**) &max_system_variables.auto_increment_offset, 0, GET_ULL, OPT_ARG,
 
2645
   1, 1, UINT64_MAX, 0, 1, 0 },
2648
2646
  {"basedir", 'b',
2649
2647
   N_("Path to installation directory. All paths are usually resolved "
2650
2648
      "relative to this."),
3404
3402
  pidfile_name_ptr= pidfile_name;
3405
3403
  language_ptr= language;
3406
3404
  drizzle_data_home= drizzle_real_data_home;
3407
 
  session_startup_options= (OPTION_AUTO_IS_NULL | OPTION_BIN_LOG | OPTION_SQL_NOTES);
 
3405
  session_startup_options= (OPTION_AUTO_IS_NULL | OPTION_SQL_NOTES);
3408
3406
  what_to_log= ~ (1L << (uint) COM_TIME);
3409
3407
  refresh_version= 1L;  /* Increments on each reload */
3410
3408
  thread_id= 1;