1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

MDEV-6066: Merge new defaults from 5.6 and 5.7

cosmetic fixes. test fixes.
This commit is contained in:
Sergei Golubchik
2015-09-03 18:06:55 +02:00
parent e3982cead2
commit bc12d5fd43
20 changed files with 81 additions and 79 deletions

View File

@ -172,13 +172,13 @@ sys_var::sys_var(sys_var_chain *chain, const char *name_arg,
option.value= (uchar **)global_var_ptr();
option.def_value= def_val;
option.app_type= this;
option.var_type= flags & AUTO_SET ? GET_AUTO : 0;
if (chain->last)
chain->last->next= this;
else
chain->first= this;
chain->last= this;
fix_auto_flag();
}
bool sys_var::update(THD *thd, set_var *var)