~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/user_var_as_out_param.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:
35
35
*/
36
36
class Item_user_var_as_out_param :public Item
37
37
{
38
 
  LEX_STRING name;
 
38
  lex_string_t name;
39
39
  user_var_entry *entry;
40
40
public:
41
 
  Item_user_var_as_out_param(LEX_STRING a) : name(a) {}
 
41
  Item_user_var_as_out_param(lex_string_t a) : name(a) {}
42
42
  /* We should return something different from FIELD_ITEM here */
43
43
  enum Type type() const { return STRING_ITEM;}
44
44
  double val_real();