~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/date.cc

  • Committer: Brian Aker
  • Date: 2008-12-24 02:06:33 UTC
  • Revision ID: brian@tangent.org-20081224020633-sbe7ca5yvo8yj5d3
Removal of client side collation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
 
58
58
int Field_date::store(const char *from,
59
59
                         uint32_t len,
60
 
                         const CHARSET_INFO * const )
 
60
                         const CHARSET_INFO * const cs __attribute__((unused)))
61
61
{
62
62
  long tmp;
63
63
  DRIZZLE_TIME l_time;
106
106
 
107
107
 
108
108
int Field_date::store(int64_t nr,
109
 
                         bool )
 
109
                         bool unsigned_val __attribute__((unused)))
110
110
{
111
111
  DRIZZLE_TIME l_time;
112
112
  int64_t tmp;
206
206
 
207
207
 
208
208
String *Field_date::val_str(String *val_buffer,
209
 
                               String *)
 
209
                               String *val_ptr __attribute__((unused)))
210
210
{
211
211
  val_buffer->alloc(field_length);
212
212
  val_buffer->length(field_length);
261
261
}
262
262
 
263
263
 
264
 
void Field_date::sort_string(unsigned char *to,uint32_t )
 
264
void Field_date::sort_string(unsigned char *to,uint32_t length __attribute__((unused)))
265
265
{
266
266
  to[0] = ptr[2];
267
267
  to[1] = ptr[1];