~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-01-25 00:16:39 UTC
  • mto: (2109.1.6 drizzle-build)
  • mto: This revision was merged to the branch mainline in revision 2112.
  • Revision ID: brian@tangent.org-20110125001639-lezc0b7obhbutj5l
Fix store_time to take reference.

Show diffs side-by-side

added added

removed removed

Lines of Context:
93
93
{
94
94
  store_now_in_TIME(&ltime);
95
95
  to->set_notnull();
96
 
  to->store_time(&ltime, type::DRIZZLE_TIMESTAMP_DATETIME);
 
96
  to->store_time(ltime, type::DRIZZLE_TIMESTAMP_DATETIME);
97
97
 
98
98
  return 0;
99
99
}