~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2010-12-21 20:27:48 UTC
  • mto: (2017.1.1 clean)
  • mto: This revision was merged to the branch mainline in revision 2018.
  • Revision ID: brian@tangent.org-20101221202748-0f1ur3ozqu569my0
Remove MyISAM flip bit, and make sure that we only pass in a good time_t to
the timestamp translator.

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
  }
77
77
 
78
78
  time_t tmp;
79
 
  temporal.to_time_t(&tmp);
 
79
  temporal.to_time_t(tmp);
80
80
 
81
81
  return (int64_t) tmp;
82
82
}