~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field.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:
915
915
int64_t Field::convert_decimal2int64_t(const my_decimal *val, bool, int *err)
916
916
{
917
917
  int64_t i;
918
 
  if (warn_if_overflow(my_decimal2int(E_DEC_ERROR &
 
918
  if (warn_if_overflow(class_decimal2int(E_DEC_ERROR &
919
919
                                      ~E_DEC_OVERFLOW & ~E_DEC_TRUNCATED,
920
920
                                      val, false, &i)))
921
921
  {