~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/time.cc

Merged from Toru - removal of my_time_t.

Show diffs side-by-side

added added

removed removed

Lines of Context:
260
260
     0 - t contains datetime value which is out of TIMESTAMP range.
261
261
 
262
262
*/
263
 
my_time_t TIME_to_timestamp(Session *session, const DRIZZLE_TIME *t,
 
263
time_t TIME_to_timestamp(Session *session, const DRIZZLE_TIME *t,
264
264
                            bool *in_dst_time_gap)
265
265
{
266
 
  my_time_t timestamp;
 
266
  time_t timestamp;
267
267
 
268
268
  *in_dst_time_gap= 0;
269
269