~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/set_var.h

  • Committer: Brian Aker
  • Date: 2011-07-25 14:24:19 UTC
  • mto: This revision was merged to the branch mainline in revision 2373.
  • Revision ID: brian@tangent.org-20110725142419-3vobv9u6k7jp4qej
Remove the typedef on lexkey

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
  sys_var *var;
60
60
  Item *value;
61
61
  sql_var_t type;
62
 
  LEX_STRING base;                      /* for structs */
 
62
  lex_string_t base;                    /* for structs */
63
63
 
64
64
  set_var(sql_var_t type_arg, sys_var *var_arg,
65
 
          const LEX_STRING *base_name_arg, Item *value_arg);
 
65
          const lex_string_t *base_name_arg, Item *value_arg);
66
66
  int check(Session *session);
67
67
  int update(Session *session);
68
68
  void setValue(const std::string &new_value);