~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/date.cc

  • Committer: Stewart Smith
  • Date: 2009-02-17 14:41:01 UTC
  • mto: This revision was merged to the branch mainline in revision 889.
  • Revision ID: stewart@flamingspork.com-20090217144101-mzmzu3lqsbo95hth
remove unused Field::send_binary() methods.

Show diffs side-by-side

added added

removed removed

Lines of Context:
192
192
  return error;
193
193
}
194
194
 
195
 
bool Field_date::send_binary(Protocol *protocol)
196
 
{
197
 
  DRIZZLE_TIME tm;
198
 
  Field_date::get_date(&tm,0);
199
 
  return protocol->store_date(&tm);
200
 
}
201
 
 
202
195
double Field_date::val_real(void)
203
196
{
204
197
  return (double) Field_date::val_int();