~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/time.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:
693
693
    to hours already.
694
694
****************************************************************************/
695
695
 
696
 
void make_time(const DATE_TIME_FORMAT *format __attribute__((unused)),
 
696
void make_time(const DATE_TIME_FORMAT *,
697
697
               const DRIZZLE_TIME *l_time, String *str)
698
698
{
699
699
  uint32_t length= (uint) my_time_to_str(l_time, (char*) str->ptr());
702
702
}
703
703
 
704
704
 
705
 
void make_date(const DATE_TIME_FORMAT *format __attribute__((unused)),
 
705
void make_date(const DATE_TIME_FORMAT *,
706
706
               const DRIZZLE_TIME *l_time, String *str)
707
707
{
708
708
  uint32_t length= (uint) my_date_to_str(l_time, (char*) str->ptr());
711
711
}
712
712
 
713
713
 
714
 
void make_datetime(const DATE_TIME_FORMAT *format __attribute__((unused)),
 
714
void make_datetime(const DATE_TIME_FORMAT *,
715
715
                   const DRIZZLE_TIME *l_time, String *str)
716
716
{
717
717
  uint32_t length= (uint) my_datetime_to_str(l_time, (char*) str->ptr());