~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/item.h

  • Committer: Brian Aker
  • Date: 2008-07-07 14:25:25 UTC
  • mto: (77.1.25 codestyle)
  • mto: This revision was merged to the branch mainline in revision 82.
  • Revision ID: brian@tangent.org-20080707142525-xzy2nl3ie2ebwfln
LL() cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
2129
2129
  longlong val_int()
2130
2130
  {
2131
2131
    int err;
2132
 
    return null_value ? LL(0) : my_strntoll(str_value.charset(),str_value.ptr(),
 
2132
    return null_value ? 0LL : my_strntoll(str_value.charset(),str_value.ptr(),
2133
2133
                                            str_value.length(),10, (char**) 0,
2134
2134
                                            &err); 
2135
2135
  }