~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/subselect.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:
826
826
    reset();
827
827
    return 0;
828
828
  }
829
 
  int2my_decimal(E_DEC_FATAL_ERROR, value, 0, decimal_value);
 
829
  int2_class_decimal(E_DEC_FATAL_ERROR, value, 0, decimal_value);
830
830
  return decimal_value;
831
831
}
832
832
 
946
946
  }
947
947
  if (was_null && !value)
948
948
    null_value= 1;
949
 
  int2my_decimal(E_DEC_FATAL_ERROR, value, 0, decimal_value);
 
949
  int2_class_decimal(E_DEC_FATAL_ERROR, value, 0, decimal_value);
950
950
  return decimal_value;
951
951
}
952
952