~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/set_user_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:
42
42
  } save_result;
43
43
 
44
44
public:
45
 
  LEX_STRING name; // keep it public
46
 
  Item_func_set_user_var(LEX_STRING a,Item *b)
 
45
  lex_string_t name; // keep it public
 
46
  Item_func_set_user_var(lex_string_t a,Item *b)
47
47
    :Item_func(b), cached_result_type(INT_RESULT), name(a)
48
48
  {}
49
49
  enum Functype functype() const { return SUSERVAR_FUNC; }