~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/double.cc

  • Committer: Brian Aker
  • Date: 2009-02-18 14:41:12 UTC
  • mfrom: (869.1.17 pointing-is-rude)
  • Revision ID: brian@tangent.org-20090218144112-o1kdtje1uy5xv34w
Merge Stewart

Show diffs side-by-side

added added

removed removed

Lines of Context:
155
155
  return val_buffer;
156
156
}
157
157
 
158
 
bool Field_double::send_binary(Protocol *protocol)
159
 
{
160
 
  return protocol->store((double) Field_double::val_real(), dec, (String*) 0);
161
 
}
162
 
 
163
 
 
164
158
int Field_double::cmp(const unsigned char *a_ptr, const unsigned char *b_ptr)
165
159
{
166
160
  double a,b;