~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/decimal.cc

  • Committer: Brian Aker
  • Date: 2011-01-25 07:22:15 UTC
  • mfrom: (2109.1.7 drizzle-build)
  • Revision ID: brian@tangent.org-20110125072215-567z6uzy5vdvn4va
Merge in build/timestamp patches/fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
257
257
}
258
258
 
259
259
 
260
 
int Field_decimal::store_time(type::Time *ltime,
 
260
int Field_decimal::store_time(type::Time &ltime,
261
261
                              type::timestamp_t )
262
262
{
263
263
  type::Decimal decimal_value;
264
 
  return store_value(date2_class_decimal(ltime, &decimal_value));
 
264
  return store_value(date2_class_decimal(&ltime, &decimal_value));
265
265
}
266
266
 
267
267