~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item.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:
145
145
    return NULL;
146
146
 
147
147
  class_decimal_round(E_DEC_FATAL_ERROR, dec, decimals, false, &dec_buf);
148
 
  my_decimal2string(E_DEC_FATAL_ERROR, &dec_buf, 0, 0, 0, str);
 
148
  class_decimal2string(E_DEC_FATAL_ERROR, &dec_buf, 0, 0, 0, str);
149
149
  return str;
150
150
}
151
151
 
155
155
  if (null_value)
156
156
    return NULL;
157
157
 
158
 
  double2my_decimal(E_DEC_FATAL_ERROR, nr, decimal_value);
 
158
  double2_class_decimal(E_DEC_FATAL_ERROR, nr, decimal_value);
159
159
  return (decimal_value);
160
160
}
161
161
 
165
165
  if (null_value)
166
166
    return NULL;
167
167
 
168
 
  int2my_decimal(E_DEC_FATAL_ERROR, nr, unsigned_flag, decimal_value);
 
168
  int2_class_decimal(E_DEC_FATAL_ERROR, nr, unsigned_flag, decimal_value);
169
169
  return decimal_value;
170
170
}
171
171
 
177
177
    return NULL;
178
178
 
179
179
  end_ptr= (char*) res->ptr()+ res->length();
180
 
  if (str2my_decimal(E_DEC_FATAL_ERROR & ~E_DEC_BAD_NUM,
 
180
  if (str2_class_decimal(E_DEC_FATAL_ERROR & ~E_DEC_BAD_NUM,
181
181
                     res->ptr(), 
182
182
                     res->length(), 
183
183
                     res->charset(),
202
202
    null_value= 1;                               // set NULL, stop processing
203
203
    return NULL;
204
204
  }
205
 
  return date2my_decimal(&ltime, decimal_value);
 
205
  return date2_class_decimal(&ltime, decimal_value);
206
206
}
207
207
 
208
208
my_decimal *Item::val_decimal_from_time(my_decimal *decimal_value)
214
214
    class_decimal_set_zero(decimal_value);
215
215
    return NULL;
216
216
  }
217
 
  return date2my_decimal(&ltime, decimal_value);
 
217
  return date2_class_decimal(&ltime, decimal_value);
218
218
}
219
219
 
220
220
double Item::val_real_from_decimal()
224
224
  my_decimal value_buff, *dec_val= val_decimal(&value_buff);
225
225
  if (null_value)
226
226
    return 0.0;
227
 
  my_decimal2double(E_DEC_FATAL_ERROR, dec_val, &result);
 
227
  class_decimal2double(E_DEC_FATAL_ERROR, dec_val, &result);
228
228
  return result;
229
229
}
230
230
 
235
235
  my_decimal value, *dec_val= val_decimal(&value);
236
236
  if (null_value)
237
237
    return 0;
238
 
  my_decimal2int(E_DEC_FATAL_ERROR, dec_val, unsigned_flag, &result);
 
238
  class_decimal2int(E_DEC_FATAL_ERROR, dec_val, unsigned_flag, &result);
239
239
  return result;
240
240
}
241
241