~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/item_strfunc.h

  • Committer: Brian Aker
  • Date: 2008-07-07 16:58:11 UTC
  • mfrom: (77.1.25 codestyle)
  • Revision ID: brian@tangent.org-20080707165811-jfqxacc3436dut4n
Merge from Monty's tree

Show diffs side-by-side

added added

removed removed

Lines of Context:
396
396
  }
397
397
  const char *func_name() const { return "user"; }
398
398
  const char *fully_qualified_func_name() const { return "user()"; }
399
 
  int save_in_field(Field *field, bool no_conversions)
 
399
  int save_in_field(Field *field,
 
400
                    bool no_conversions __attribute__((__unused__)))
400
401
  {
401
402
    return save_str_value_in_field(field, &str_value);
402
403
  }