~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/set_var.h

  • Committer: Mark Atwood
  • Date: 2011-10-27 05:08:12 UTC
  • mfrom: (2445.1.11 rf)
  • Revision ID: me@mark.atwood.name-20111027050812-1icvs72lb0u4xdc4
mergeĀ lp:~olafvdspek/drizzle/refactor8

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
class set_var_base
43
43
{
44
44
public:
45
 
  set_var_base() {}
46
45
  virtual ~set_var_base() {}
47
 
  virtual int check(Session *session)=0;        /* To check privileges etc. */
48
 
  virtual int update(Session *session)=0;       /* To set the value */
 
46
  virtual int check(Session*)= 0;       /* To check privileges etc. */
 
47
  virtual int update(Session*)= 0;      /* To set the value */
49
48
  /* light check for PS */
50
49
};
51
50
 
52
51
/* MySQL internal variables */
53
 
class set_var :
54
 
  public set_var_base
 
52
class set_var : public set_var_base
55
53
{
56
54
  uint64_t uint64_t_value;
57
55
  std::string str_value;
59
57
  sys_var *var;
60
58
  Item *value;
61
59
  sql_var_t type;
62
 
  lex_string_t base;                    /* for structs */
 
60
  str_ref base; // for structs
63
61
 
64
 
  set_var(sql_var_t type_arg, sys_var *var_arg,
65
 
          const lex_string_t *base_name_arg, Item *value_arg);
 
62
  set_var(sql_var_t type_arg, sys_var *var_arg, str_ref base_name_arg, Item *value_arg);
66
63
  int check(Session *session);
67
64
  int update(Session *session);
68
65
  void setValue(const std::string &new_value);