~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2011-04-21 21:09:08 UTC
  • mfrom: (2281.4.3 prune)
  • Revision ID: brian@tangent.org-20110421210908-qfoyfsfmqn6b1ocd
Merge in Olaf prune tree (with comment on set_db)

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
*/
34
34
void Item_func_sysdate_local::store_now_in_TIME(type::Time &now_time)
35
35
{
36
 
  getSession().variables.time_zone->gmt_sec_to_TIME(now_time, time(NULL));
 
36
  now_time.store(time(NULL));
37
37
}
38
38
 
39
39