~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/int64_t.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:
166
166
  return val_buffer;
167
167
}
168
168
 
169
 
 
170
 
bool Field_int64_t::send_binary(Protocol *protocol)
171
 
{
172
 
  return protocol->store_int64_t(Field_int64_t::val_int(), false);
173
 
}
174
 
 
175
 
 
176
169
int Field_int64_t::cmp(const unsigned char *a_ptr, const unsigned char *b_ptr)
177
170
{
178
171
  int64_t a,b;