| 1072 | void global_save_default(THD *thd, set_var *var) |
| 1073 | { var->save_result.ulonglong_value= option.def_value; } |
| 1074 | uchar *session_value_ptr(THD *thd, LEX_STRING *base) |
| 1075 | { |
| 1076 | return (uchar*)set_to_string(thd, 0, session_var(thd, ulonglong), |
| 1077 | typelib.type_names); |
| 1078 | } |
| 1079 | uchar *global_value_ptr(THD *thd, LEX_STRING *base) |
| 1080 | { |
| 1081 | return (uchar*)set_to_string(thd, 0, global_var(ulonglong), |
nothing calls this directly
no test coverage detected