Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
13546313
Commit
13546313
authored
Nov 16, 2006
by
ramil/ram@mysql.com/myoffice.izhnet.ru
Browse files
Options
Browse Files
Download
Plain Diff
Merge rkalimullin@bk-internal.mysql.com:/home/bk/mysql-4.1-maint
into mysql.com:/usr/home/ram/work/bug23653/my41-bug23653
parents
a70b9428
4b823e04
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
mysql-test/r/func_time.result
mysql-test/r/func_time.result
+3
-0
mysql-test/t/func_time.test
mysql-test/t/func_time.test
+6
-0
sql/item_timefunc.cc
sql/item_timefunc.cc
+2
-1
No files found.
mysql-test/r/func_time.result
View file @
13546313
...
@@ -815,4 +815,7 @@ union
...
@@ -815,4 +815,7 @@ union
(select time_format(timediff(now(), DATE_SUB(now(),INTERVAL 5 HOUR)),'%k') As H);
(select time_format(timediff(now(), DATE_SUB(now(),INTERVAL 5 HOUR)),'%k') As H);
H
H
5
5
select last_day('0000-00-00');
last_day('0000-00-00')
NULL
End of 4.1 tests
End of 4.1 tests
mysql-test/t/func_time.test
View file @
13546313
...
@@ -446,4 +446,10 @@ union
...
@@ -446,4 +446,10 @@ union
union
union
(
select
time_format
(
timediff
(
now
(),
DATE_SUB
(
now
(),
INTERVAL
5
HOUR
)),
'%k'
)
As
H
);
(
select
time_format
(
timediff
(
now
(),
DATE_SUB
(
now
(),
INTERVAL
5
HOUR
)),
'%k'
)
As
H
);
#
# Bug #23653: crash if last_day('0000-00-00')
#
select
last_day
(
'0000-00-00'
);
--
echo
End
of
4.1
tests
--
echo
End
of
4.1
tests
sql/item_timefunc.cc
View file @
13546313
...
@@ -3058,7 +3058,8 @@ String *Item_func_str_to_date::val_str(String *str)
...
@@ -3058,7 +3058,8 @@ String *Item_func_str_to_date::val_str(String *str)
bool
Item_func_last_day
::
get_date
(
TIME
*
ltime
,
uint
fuzzy_date
)
bool
Item_func_last_day
::
get_date
(
TIME
*
ltime
,
uint
fuzzy_date
)
{
{
if
(
get_arg0_date
(
ltime
,
fuzzy_date
&
~
TIME_FUZZY_DATE
))
if
(
get_arg0_date
(
ltime
,
fuzzy_date
&
~
TIME_FUZZY_DATE
)
||
(
ltime
->
month
==
0
))
return
1
;
return
1
;
uint
month_idx
=
ltime
->
month
-
1
;
uint
month_idx
=
ltime
->
month
-
1
;
ltime
->
day
=
days_in_month
[
month_idx
];
ltime
->
day
=
days_in_month
[
month_idx
];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment