~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/timestamp.cc

  • Committer: Brian Aker
  • Date: 2008-10-06 06:47:29 UTC
  • Revision ID: brian@tangent.org-20081006064729-2i9mhjkzyvow9xsm
RemoveĀ uint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
142
142
 
143
143
 
144
144
int Field_timestamp::store(const char *from,
145
 
                           uint len,
 
145
                           uint32_t len,
146
146
                           const CHARSET_INFO * const cs __attribute__((unused)))
147
147
{
148
148
  DRIZZLE_TIME l_time;
347
347
}
348
348
 
349
349
 
350
 
bool Field_timestamp::get_date(DRIZZLE_TIME *ltime, uint fuzzydate)
 
350
bool Field_timestamp::get_date(DRIZZLE_TIME *ltime, uint32_t fuzzydate)
351
351
{
352
352
  long temp;
353
353
  THD *thd= table ? table->in_use : current_thd;
404
404
}
405
405
 
406
406
 
407
 
void Field_timestamp::sort_string(unsigned char *to,uint length __attribute__((unused)))
 
407
void Field_timestamp::sort_string(unsigned char *to,uint32_t length __attribute__((unused)))
408
408
{
409
409
#ifdef WORDS_BIGENDIAN
410
410
  if (!table || !table->s->db_low_byte_first)