~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/set_var.h

merge with latest from the trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
988
988
  unsigned char *value_ptr(Session *session, enum_var_type type, LEX_STRING *base);
989
989
};
990
990
 
991
 
/**
992
 
  Handler for setting the system variable --read-only.
993
 
*/
994
 
 
995
 
class sys_var_opt_readonly :public sys_var_bool_ptr
996
 
{
997
 
public:
998
 
  sys_var_opt_readonly(sys_var_chain *chain, const char *name_arg,
999
 
                       bool *value_arg) :
1000
 
    sys_var_bool_ptr(chain, name_arg, value_arg) {};
1001
 
  ~sys_var_opt_readonly() {};
1002
 
  bool update(Session *session, set_var *var);
1003
 
};
1004
 
 
1005
 
 
1006
991
class sys_var_session_lc_time_names :public sys_var_session
1007
992
{
1008
993
public: