~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/temporal.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:
1078
1078
void Time::to_decimal(my_decimal *to) const
1079
1079
{
1080
1080
  int64_t time_portion= (((_hours * 100L) + _minutes) * 100L) + _seconds;
1081
 
  (void) int2my_decimal(E_DEC_FATAL_ERROR, time_portion, false, to);
 
1081
  (void) int2_class_decimal(E_DEC_FATAL_ERROR, time_portion, false, to);
1082
1082
  if (_useconds > 0)
1083
1083
  {
1084
1084
    to->buf[(to->intg-1) / 9 + 1]= _useconds * 1000;
1089
1089
void Date::to_decimal(my_decimal *to) const
1090
1090
{
1091
1091
  int64_t date_portion= (((_years * 100L) + _months) * 100L) + _days;
1092
 
  (void) int2my_decimal(E_DEC_FATAL_ERROR, date_portion, false, to);
 
1092
  (void) int2_class_decimal(E_DEC_FATAL_ERROR, date_portion, false, to);
1093
1093
}
1094
1094
 
1095
1095
void DateTime::to_decimal(my_decimal *to) const
1096
1096
{
1097
1097
  int64_t date_portion= (((_years * 100L) + _months) * 100L) + _days;
1098
1098
  int64_t time_portion= (((((date_portion * 100L) + _hours) * 100L) + _minutes) * 100L) + _seconds;
1099
 
  (void) int2my_decimal(E_DEC_FATAL_ERROR, time_portion, false, to);
 
1099
  (void) int2_class_decimal(E_DEC_FATAL_ERROR, time_portion, false, to);
1100
1100
  if (_useconds > 0)
1101
1101
  {
1102
1102
    to->buf[(to->intg-1) / 9 + 1]= _useconds * 1000;