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 */