~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/microtime.cc

  • Committer: Olaf van der Spek
  • Date: 2011-06-30 23:44:02 UTC
  • mto: This revision was merged to the branch mainline in revision 2363.
  • Revision ID: olafvdspek@gmail.com-20110630234402-t10ohty9lom5u64m
Remove util::localtime as it was equivalent to gmtime

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
  bool in_dst_time_gap;
92
92
 
93
93
  type::epoch_t time_tmp;
94
 
  ltime.convert(time_tmp, &my_timezone, &in_dst_time_gap, true);
 
94
  ltime.convert(time_tmp, &my_timezone, &in_dst_time_gap);
95
95
  uint64_t tmp_seconds= time_tmp;
96
96
  uint32_t tmp_micro= ltime.second_part;
97
97