~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/long.cc

  • Committer: Brian Aker
  • Date: 2009-01-25 02:52:05 UTC
  • mfrom: (801.1.4 testable)
  • Revision ID: brian@gir.tangent.org-20090125025205-zlahg6u6z0w95v64
Merge from Myself

Show diffs side-by-side

added added

removed removed

Lines of Context:
150
150
}
151
151
 
152
152
String *Field_long::val_str(String *val_buffer,
153
 
                            String *val_ptr __attribute__((unused)))
 
153
                            String *)
154
154
{
155
155
  const CHARSET_INFO * const cs= &my_charset_bin;
156
156
  uint32_t length;
196
196
  return (a < b) ? -1 : (a > b) ? 1 : 0;
197
197
}
198
198
 
199
 
void Field_long::sort_string(unsigned char *to,uint32_t length __attribute__((unused)))
 
199
void Field_long::sort_string(unsigned char *to,uint32_t )
200
200
{
201
201
#ifdef WORDS_BIGENDIAN
202
202
  if (!table->s->db_low_byte_first)