~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/time.cc

  • Committer: Brian Aker
  • Date: 2010-12-25 04:38:28 UTC
  • mto: This revision was merged to the branch mainline in revision 2031.
  • Revision ID: brian@tangent.org-20101225043828-fz83ma79dvqaxvri
Update for moving DRIZZLE_TIME to type::Time

Show diffs side-by-side

added added

removed removed

Lines of Context:
220
220
  return val_buffer;
221
221
}
222
222
 
223
 
bool Time::get_date(DRIZZLE_TIME *ltime, uint32_t)
 
223
bool Time::get_date(type::Time *ltime, uint32_t)
224
224
{
225
225
  memset(ltime, 0, sizeof(*ltime));
226
226
 
238
238
  return 0;
239
239
}
240
240
 
241
 
bool Time::get_time(DRIZZLE_TIME *ltime)
 
241
bool Time::get_time(type::Time *ltime)
242
242
{
243
243
  return Time::get_date(ltime, 0);
244
244
}