summaryrefslogtreecommitdiff
path: root/sql/item_timefunc.cc
diff options
context:
space:
mode:
authortnurnberg@white.intern.koehntopp.de <>2007-12-17 08:10:13 +0100
committertnurnberg@white.intern.koehntopp.de <>2007-12-17 08:10:13 +0100
commit786b3a2b169a9e1ca830579c93ee654fa1aba055 (patch)
tree99f3f7e422ca8326bb03c48308a04f9db4881ac7 /sql/item_timefunc.cc
parentd611f84449dac437834143e23b063c93b6b0d9c7 (diff)
parent4abda87881c34ff79e5015622b3ad4e524eedfa2 (diff)
downloadmariadb-git-786b3a2b169a9e1ca830579c93ee654fa1aba055.tar.gz
Merge tnurnberg@bk-internal.mysql.com:/home/bk/mysql-5.1-opt
into mysql.com:/misc/mysql/32770/51-32770
Diffstat (limited to 'sql/item_timefunc.cc')
-rw-r--r--sql/item_timefunc.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/item_timefunc.cc b/sql/item_timefunc.cc
index 3d4a6de83ac..56a6480d859 100644
--- a/sql/item_timefunc.cc
+++ b/sql/item_timefunc.cc
@@ -3344,6 +3344,8 @@ bool Item_func_last_day::get_date(MYSQL_TIME *ltime, uint fuzzy_date)
ltime->day= days_in_month[month_idx];
if ( month_idx == 1 && calc_days_in_year(ltime->year) == 366)
ltime->day= 29;
+ ltime->hour= ltime->minute= ltime->second= 0;
+ ltime->second_part= 0;
ltime->time_type= MYSQL_TIMESTAMP_DATE;
return 0;
}