~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/time/sysdate_local.cc

MergeĀ inĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
{
42
42
  assert(fixed == 1);
43
43
  store_now_in_TIME(&ltime);
44
 
  buff_length= (uint) my_datetime_to_str(&ltime, buff);
 
44
  buff_length= (uint) my_TIME_to_str(&ltime, buff);
45
45
  str_value.set(buff, buff_length, &my_charset_bin);
46
46
  return &str_value;
47
47
}