~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/user_var_as_out_param.cc

  • Committer: Andrew Hutchings
  • Date: 2011-03-29 20:45:43 UTC
  • mfrom: (2257 drizzle)
  • mto: (2257.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 2258.
  • Revision ID: andrew@linuxjedi.co.uk-20110329204543-ssex0nuo8knncgwx
Merge with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
  return false;
46
46
}
47
47
 
48
 
void Item_user_var_as_out_param::set_null_value(const CHARSET_INFO * const cs)
 
48
void Item_user_var_as_out_param::set_null_value(const charset_info_st * const cs)
49
49
{
50
50
  entry->update_hash(true, 0, 0, STRING_RESULT, cs,
51
51
                     DERIVATION_IMPLICIT, 0 /* unsigned_arg */);
53
53
 
54
54
 
55
55
void Item_user_var_as_out_param::set_value(const char *str, uint32_t length,
56
 
                                           const CHARSET_INFO * const cs)
 
56
                                           const charset_info_st * const cs)
57
57
{
58
58
  entry->update_hash(false, (void*)str, length, STRING_RESULT, cs,
59
59
                DERIVATION_IMPLICIT, 0 /* unsigned_arg */);