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
913aae59
Commit
913aae59
authored
Apr 14, 2009
by
Tatiana A. Nurnberg
Browse files
Options
Browse Files
Download
Plain Diff
Bug#42662: maketime() and signedness
merge and additional clarifications
parents
dc3fad94
4e0e0db4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
55 additions
and
2 deletions
+55
-2
mysql-test/r/func_sapdb.result
mysql-test/r/func_sapdb.result
+30
-0
mysql-test/t/func_sapdb.test
mysql-test/t/func_sapdb.test
+22
-0
sql/item_timefunc.cc
sql/item_timefunc.cc
+3
-2
No files found.
mysql-test/r/func_sapdb.result
View file @
913aae59
...
...
@@ -282,3 +282,33 @@ TIMEDIFF(TIME('17:59:00'),TIME('17:00:00')),
TIMEDIFF(TIME('17:00:00'),TIME('17:59:00'));
1Eq 1NEq1 1NEq2 2Eq 2NEq1 2NEq2 3Eq 3NEq1 3NEq2 Time0 Time00 Literal0000 TIMEDIFF(TIME('17:59:00'),TIME('17:00:00')) TIMEDIFF(TIME('17:00:00'),TIME('17:59:00'))
1 0 0 1 0 0 1 0 0 00:00:00 00:00:00 00:00:00 00:59:00 -00:59:00
SELECT sec_to_time(3020399)=time('838:59:59');
sec_to_time(3020399)=time('838:59:59')
1
SELECT sec_to_time(-3020399)=time('-838:59:59');
sec_to_time(-3020399)=time('-838:59:59')
1
SELECT sec_to_time(-3020399)='-838:59:59';
sec_to_time(-3020399)='-838:59:59'
1
SELECT time(sec_to_time(-3020399))=time('-838:59:59');
time(sec_to_time(-3020399))=time('-838:59:59')
1
SELECT time(sec_to_time(-3020399))=time('-838:59:58');
time(sec_to_time(-3020399))=time('-838:59:58')
0
SELECT maketime(-1,0,1)='-01:00:01';
maketime(-1,0,1)='-01:00:01'
1
SELECT TIME(maketime(-1,0,1))=TIME('-01:00:01');
TIME(maketime(-1,0,1))=TIME('-01:00:01')
1
SELECT maketime(-1,0,1)=TIME('-01:00:01');
maketime(-1,0,1)=TIME('-01:00:01')
1
SELECT maketime(1,0,1)=TIME('01:00:01');
maketime(1,0,1)=TIME('01:00:01')
1
SELECT maketime(1,0,1)=TIME('01:00:02');
maketime(1,0,1)=TIME('01:00:02')
0
mysql-test/t/func_sapdb.test
View file @
913aae59
...
...
@@ -169,4 +169,26 @@ SELECT TIMEDIFF(TIME('17:00:00'),TIME('17:00:00'))=TIME('00:00:00') AS 1Eq,
TIMEDIFF
(
TIME
(
'17:59:00'
),
TIME
(
'17:00:00'
)),
TIMEDIFF
(
TIME
(
'17:00:00'
),
TIME
(
'17:59:00'
));
#
# Bug#42661 - sec_to_time() and signedness
#
SELECT
sec_to_time
(
3020399
)
=
TIME
(
'838:59:59'
);
SELECT
sec_to_time
(
-
3020399
)
=
TIME
(
'-838:59:59'
);
SELECT
sec_to_time
(
-
3020399
)
=
'-838:59:59'
;
SELECT
time
(
sec_to_time
(
-
3020399
))
=
TIME
(
'-838:59:59'
);
SELECT
time
(
sec_to_time
(
-
3020399
))
=
TIME
(
'-838:59:58'
);
#
# Bug#42662 - maketime() and signedness
#
# TIME(...) and CAST(... AS TIME) go through the same code-path here,
# but we'll explicitly show show that both work in case the ever changes.
SELECT
maketime
(
-
1
,
0
,
1
)
=
'-01:00:01'
;
SELECT
TIME
(
maketime
(
-
1
,
0
,
1
))
=
CAST
(
'-01:00:01'
AS
TIME
);
SELECT
maketime
(
-
1
,
0
,
1
)
=
CAST
(
'-01:00:01'
AS
TIME
);
SELECT
maketime
(
1
,
0
,
1
)
=
CAST
(
'01:00:01'
AS
TIME
);
SELECT
maketime
(
1
,
0
,
1
)
=
CAST
(
'01:00:02'
AS
TIME
);
# End of 5.0 tests
sql/item_timefunc.cc
View file @
913aae59
...
...
@@ -1730,7 +1730,7 @@ longlong Item_func_sec_to_time::val_int()
sec_to_time
(
arg_val
,
args
[
0
]
->
unsigned_flag
,
&
ltime
);
return
(
ltime
.
neg
?
-
1
:
1
)
*
((
ltime
.
hour
)
*
10000
+
ltime
.
minute
*
100
+
ltime
.
second
);
(
longlong
)
(
(
ltime
.
hour
)
*
10000
+
ltime
.
minute
*
100
+
ltime
.
second
);
}
...
...
@@ -2648,7 +2648,8 @@ longlong Item_time_typecast::val_int()
null_value
=
1
;
return
0
;
}
return
ltime
.
hour
*
10000L
+
ltime
.
minute
*
100
+
ltime
.
second
;
return
(
ltime
.
neg
?
-
1
:
1
)
*
(
longlong
)
((
ltime
.
hour
)
*
10000
+
ltime
.
minute
*
100
+
ltime
.
second
);
}
String
*
Item_time_typecast
::
val_str
(
String
*
str
)
...
...
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