~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/set_var.cc

  • Committer: devananda
  • Date: 2009-06-30 14:27:54 UTC
  • mfrom: (1030.2.4 trunk)
  • mto: (1093.1.7 captain)
  • mto: This revision was merged to the branch mainline in revision 1095.
  • Revision ID: devananda.vdv@gmail.com-20090630142754-vm9w374yxkf1pikc
mergeĀ fromĀ lp

Show diffs side-by-side

added added

removed removed

Lines of Context:
182
182
                                                               &SV::max_length_for_sort_data);
183
183
static sys_var_session_size_t   sys_max_sort_length(&vars, "max_sort_length",
184
184
                                                    &SV::max_sort_length);
185
 
static sys_var_session_uint64_t sys_max_tmp_tables(&vars, "max_tmp_tables",
186
 
                                                   &SV::max_tmp_tables);
187
185
static sys_var_uint64_t_ptr     sys_max_write_lock_count(&vars, "max_write_lock_count",
188
186
                                                 &max_write_lock_count);
189
187
static sys_var_session_uint64_t sys_min_examined_row_limit(&vars, "min_examined_row_limit",
360
358
/* Global read-only variable containing hostname */
361
359
static sys_var_const_str        sys_hostname(&vars, "hostname", glob_hostname);
362
360
 
363
 
sys_var_session_bool  sys_keep_files_on_create(&vars, "keep_files_on_create",
364
 
                                           &SV::keep_files_on_create);
365
361
/* Read only variables */
366
362
 
367
363
static sys_var_have_variable sys_have_symlink(&vars, "have_symlink", &have_symlink);
379
375
#ifdef HAVE_MLOCKALL
380
376
  {"locked_in_memory",        (char*) &locked_in_memory,            SHOW_MY_BOOL},
381
377
#endif
382
 
  {"myisam_recover_options",  (char*) &myisam_recover_options_str,  SHOW_CHAR_PTR},
383
378
  {"pid_file",                (char*) pidfile_name,                 SHOW_CHAR},
384
379
  {"plugin_dir",              (char*) opt_plugin_dir,               SHOW_CHAR},
385
 
  {"port",                    (char*) &drizzled_port,               SHOW_INT},
386
 
  {"protocol_version",        (char*) &protocol_version,            SHOW_INT},
 
380
  {"port",                    (char*) &drizzled_tcp_port,           SHOW_INT},
387
381
  {"thread_stack",            (char*) &my_thread_stack_size,        SHOW_INT},
388
382
};
389
383