~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/str/strfunc.cc

  • Committer: Brian Aker
  • Date: 2010-12-25 00:44:06 UTC
  • mto: This revision was merged to the branch mainline in revision 2031.
  • Revision ID: brian@tangent.org-20101225004406-4xna6p795yqkaony
Second pass through function names.

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
  res= val_str(&tmp);
62
62
  if (!res)
63
63
    return 0;
64
 
  (void)str2my_decimal(E_DEC_FATAL_ERROR, (char*) res->ptr(),
 
64
  (void)str2_class_decimal(E_DEC_FATAL_ERROR, (char*) res->ptr(),
65
65
                       res->length(), res->charset(), decimal_value);
66
66
  return decimal_value;
67
67
}