~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/set_var.cc

  • Committer: Grant Limberg
  • Date: 2008-08-12 21:13:01 UTC
  • mto: (322.1.1 codestyle)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: grant@glsoftware.net-20080812211301-ym3wsowelkgp16s2
renamed all instances of MYSQL_ to DRIZZLE_

Show diffs side-by-side

added added

removed removed

Lines of Context:
403
403
static sys_var_bool_ptr  sys_timed_mutexes(&vars, "timed_mutexes", &timed_mutexes);
404
404
static sys_var_const_str        sys_version(&vars, "version", server_version);
405
405
static sys_var_const_str        sys_version_comment(&vars, "version_comment",
406
 
                                            MYSQL_COMPILATION_COMMENT);
 
406
                                            DRIZZLE_COMPILATION_COMMENT);
407
407
static sys_var_const_str        sys_version_compile_machine(&vars, "version_compile_machine",
408
408
                                                    MACHINE_TYPE);
409
409
static sys_var_const_str        sys_version_compile_os(&vars, "version_compile_os",
2189
2189
                             set_var *var, const char *log_ext,
2190
2190
                             bool log_state, uint log_type)
2191
2191
{
2192
 
  MYSQL_QUERY_LOG *file_log;
 
2192
  DRIZZLE_QUERY_LOG *file_log;
2193
2193
  char buff[FN_REFLEN];
2194
2194
  char *res= 0, *old_value=(char *)(var ? var->value->str_value.ptr() : 0);
2195
2195
  bool result= 0;