~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Toru Maesaka
  • Date: 2008-12-22 03:34:28 UTC
  • mto: (722.1.8 devel)
  • mto: This revision was merged to the branch mainline in revision 727.
  • Revision ID: dev@torum.net-20081222033428-fhvtejjfuvlvivrg
Use time_t instead of my_time_t which should be safe (as in wide enough) on POSIX compliant systems.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include <drizzled/session.h>
25
25
 
26
26
/**
27
 
    Converts current time in my_time_t to DRIZZLE_TIME represenatation for local
 
27
    Converts current time in time_t to DRIZZLE_TIME represenatation for local
28
28
    time zone. Defines time zone (local) used for whole SYSDATE function.
29
29
*/
30
30
void Item_func_sysdate_local::store_now_in_TIME(DRIZZLE_TIME *now_time)