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
dc525582
Commit
dc525582
authored
Feb 07, 2009
by
Joerg Bruehe
Browse files
Options
Browse Files
Download
Plain Diff
Merge main 5.0 -> 5.0-build
parents
8bf1b125
9169711b
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
36 additions
and
3 deletions
+36
-3
configure.in
configure.in
+2
-2
mysql-test/r/func_sapdb.result
mysql-test/r/func_sapdb.result
+14
-0
mysql-test/t/func_sapdb.test
mysql-test/t/func_sapdb.test
+18
-0
netware/Makefile.am
netware/Makefile.am
+1
-1
sql/item_timefunc.h
sql/item_timefunc.h
+1
-0
No files found.
configure.in
View file @
dc525582
...
...
@@ -7,7 +7,7 @@ AC_INIT(sql/mysqld.cc)
AC_CANONICAL_SYSTEM
# The Docs Makefile.am parses this line!
# remember to also change ndb version below and update version.c in ndb
AM_INIT_AUTOMAKE
(
mysql, 5.0.7
8
)
AM_INIT_AUTOMAKE
(
mysql, 5.0.7
9
)
AM_CONFIG_HEADER
([
include/config.h:config.h.in]
)
PROTOCOL_VERSION
=
10
...
...
@@ -23,7 +23,7 @@ NDB_SHARED_LIB_VERSION=$NDB_SHARED_LIB_MAJOR_VERSION:0:0
# ndb version
NDB_VERSION_MAJOR
=
5
NDB_VERSION_MINOR
=
0
NDB_VERSION_BUILD
=
7
8
NDB_VERSION_BUILD
=
7
9
NDB_VERSION_STATUS
=
""
# Set all version vars based on $VERSION. How do we do this more elegant ?
...
...
mysql-test/r/func_sapdb.result
View file @
dc525582
...
...
@@ -268,3 +268,17 @@ timediff('2008-09-29 20:10:10','2008-09-30 20:10:10')<time('00:00:00')
SELECT CAST(time('-73:42:12') AS DECIMAL);
CAST(time('-73:42:12') AS DECIMAL)
-734212
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'))=TIME('00:00:00') AS 1NEq1,
TIMEDIFF(TIME('18:00:00'),TIME('17:00:00'))=TIME('00:00:00') AS 1NEq2,
TIMEDIFF(TIME('17:00:00'),TIME('17:00:00'))= '00:00:00' AS 2Eq,
TIMEDIFF(TIME('17:59:00'),TIME('17:00:00'))= '00:00:00' AS 2NEq1,
TIMEDIFF(TIME('18:00:00'),TIME('17:00:00'))= '00:00:00' AS 2NEq2,
TIMEDIFF(TIME('17:00:00'),TIME('17:00:00'))=TIME(0) AS 3Eq,
TIMEDIFF(TIME('17:59:00'),TIME('17:00:00'))=TIME(0) AS 3NEq1,
TIMEDIFF(TIME('18:00:00'),TIME('17:00:00'))=TIME(0) AS 3NEq2,
TIME(0) AS Time0, TIME('00:00:00') AS Time00, '00:00:00' AS Literal0000,
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
mysql-test/t/func_sapdb.test
View file @
dc525582
...
...
@@ -151,4 +151,22 @@ select timediff('2008-09-29 20:10:10','2008-09-30 20:10:10')<time('00:00:00');
SELECT
CAST
(
time
(
'-73:42:12'
)
AS
DECIMAL
);
#
# Bug#42525 - TIMEDIFF function
#
SELECT
TIMEDIFF
(
TIME
(
'17:00:00'
),
TIME
(
'17:00:00'
))
=
TIME
(
'00:00:00'
)
AS
1
Eq
,
TIMEDIFF
(
TIME
(
'17:59:00'
),
TIME
(
'17:00:00'
))
=
TIME
(
'00:00:00'
)
AS
1
NEq1
,
TIMEDIFF
(
TIME
(
'18:00:00'
),
TIME
(
'17:00:00'
))
=
TIME
(
'00:00:00'
)
AS
1
NEq2
,
TIMEDIFF
(
TIME
(
'17:00:00'
),
TIME
(
'17:00:00'
))
=
'00:00:00'
AS
2
Eq
,
TIMEDIFF
(
TIME
(
'17:59:00'
),
TIME
(
'17:00:00'
))
=
'00:00:00'
AS
2
NEq1
,
TIMEDIFF
(
TIME
(
'18:00:00'
),
TIME
(
'17:00:00'
))
=
'00:00:00'
AS
2
NEq2
,
TIMEDIFF
(
TIME
(
'17:00:00'
),
TIME
(
'17:00:00'
))
=
TIME
(
0
)
AS
3
Eq
,
TIMEDIFF
(
TIME
(
'17:59:00'
),
TIME
(
'17:00:00'
))
=
TIME
(
0
)
AS
3
NEq1
,
TIMEDIFF
(
TIME
(
'18:00:00'
),
TIME
(
'17:00:00'
))
=
TIME
(
0
)
AS
3
NEq2
,
TIME
(
0
)
AS
Time0
,
TIME
(
'00:00:00'
)
AS
Time00
,
'00:00:00'
AS
Literal0000
,
TIMEDIFF
(
TIME
(
'17:59:00'
),
TIME
(
'17:00:00'
)),
TIMEDIFF
(
TIME
(
'17:00:00'
),
TIME
(
'17:59:00'
));
# End of 5.0 tests
netware/Makefile.am
View file @
dc525582
...
...
@@ -90,7 +90,7 @@ EXTRA_DIST= $(BUILT_SOURCES) comp_err.def install_test_db.ncf \
BUILD/compile-netware-standard BUILD/create-patch
\
BUILD/cron-build BUILD/crontab BUILD/knetware.imp
\
BUILD/mwasmnlm BUILD/mwccnlm BUILD/mwenv BUILD/mwldnlm
\
BUILD/nwb
ootstrap
BUILD/openssl.imp BUILD/save-patch
BUILD/nwb
uild
BUILD/openssl.imp BUILD/save-patch
endif
...
...
sql/item_timefunc.h
View file @
dc525582
...
...
@@ -398,6 +398,7 @@ public:
{
return
save_time_in_field
(
field
);
}
longlong
val_int
()
{
return
val_int_from_decimal
();
}
bool
result_as_longlong
()
{
return
TRUE
;
}
};
...
...
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