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
0ad8eaeb
Commit
0ad8eaeb
authored
Jan 27, 2014
by
Alexander Barkov
Browse files
Options
Browse Files
Download
Plain Diff
Merge 5.3 -> 5.5
parents
ba3d0b17
7ea9d1e6
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
64 additions
and
25 deletions
+64
-25
mysql-test/r/func_time.result
mysql-test/r/func_time.result
+24
-0
mysql-test/r/type_date.result
mysql-test/r/type_date.result
+1
-1
mysql-test/r/type_time.result
mysql-test/r/type_time.result
+1
-1
mysql-test/t/func_time.test
mysql-test/t/func_time.test
+11
-0
sql/item_func.cc
sql/item_func.cc
+7
-5
sql/item_timefunc.cc
sql/item_timefunc.cc
+4
-17
sql/sql_time.cc
sql/sql_time.cc
+14
-0
sql/sql_time.h
sql/sql_time.h
+2
-1
No files found.
mysql-test/r/func_time.result
View file @
0ad8eaeb
...
...
@@ -2375,6 +2375,30 @@ SELECT EXTRACT(DAY FROM TIME('1 02:00:00')), EXTRACT(DAY FROM TIME('26:00:00'));
EXTRACT(DAY FROM TIME('1 02:00:00')) EXTRACT(DAY FROM TIME('26:00:00'))
1 1
#
# MDEV-5458 RQG hits 'sql/tztime.cc:799: my_time_t sec_since_epoch(int, int, int, int, int, int): Assertion `mon > 0 && mon < 13' failed.'
#
SET TIMESTAMP=UNIX_TIMESTAMP('2014-01-22 18:19:20');
CREATE TABLE t1 (t TIME);
INSERT INTO t1 VALUES ('03:22:30'),('18:30:05');
SELECT CONVERT_TZ(GREATEST(t, CURRENT_DATE()), '+02:00', '+10:00') FROM t1;
CONVERT_TZ(GREATEST(t, CURRENT_DATE()), '+02:00', '+10:00')
NULL
NULL
Warnings:
Warning 1292 Truncated incorrect time value: '1296:00:00'
Warning 1292 Incorrect datetime value: '838:59:59'
Warning 1292 Truncated incorrect time value: '1296:00:00'
Warning 1292 Incorrect datetime value: '838:59:59'
SELECT GREATEST(t, CURRENT_DATE()) FROM t1;
GREATEST(t, CURRENT_DATE())
838:59:59
838:59:59
Warnings:
Warning 1292 Truncated incorrect time value: '1296:00:00'
Warning 1292 Truncated incorrect time value: '1296:00:00'
DROP TABLE t1;
SET TIMESTAMP=DEFAULT;
#
# MDEV-5504 Server crashes in String::length on SELECT with MONTHNAME, GROUP BY, ROLLUP
#
CREATE TABLE t1 (i INT);
...
...
mysql-test/r/type_date.result
View file @
0ad8eaeb
...
...
@@ -309,7 +309,7 @@ SELECT CONVERT_TZ(GREATEST(DATE('2021-00-00'),DATE('2022-00-00')),'+00:00','+7:5
CONVERT_TZ(GREATEST(DATE('2021-00-00'),DATE('2022-00-00')),'+00:00','+7:5')
NULL
Warnings:
Warning 1292 Incorrect datetime value: '2022-00-00
00:00:00
'
Warning 1292 Incorrect datetime value: '2022-00-00'
#
# MDEV-4804 Date comparing false result
#
...
...
mysql-test/r/type_time.result
View file @
0ad8eaeb
...
...
@@ -181,7 +181,7 @@ SELECT CONVERT_TZ(GREATEST(TIME('00:00:00'),TIME('00:00:00')),'+00:00','+7:5');
CONVERT_TZ(GREATEST(TIME('00:00:00'),TIME('00:00:00')),'+00:00','+7:5')
NULL
Warnings:
Warning 1292 Incorrect datetime value: '00
00-00-00 00
:00:00'
Warning 1292 Incorrect datetime value: '00:00:00'
#
# MDEV-4652 Wrong result for CONCAT(GREATEST(TIME('00:00:01'),TIME('00:00:00')))
#
...
...
mysql-test/t/func_time.test
View file @
0ad8eaeb
...
...
@@ -1448,6 +1448,17 @@ SELECT EXTRACT(HOUR FROM TIME'1 02:00:00'), EXTRACT(HOUR FROM TIME'26:00:00');
SELECT
EXTRACT
(
HOUR
FROM
TIME
(
'1 02:00:00'
)),
EXTRACT
(
HOUR
FROM
TIME
(
'26:00:00'
));
SELECT
EXTRACT
(
DAY
FROM
TIME
(
'1 02:00:00'
)),
EXTRACT
(
DAY
FROM
TIME
(
'26:00:00'
));
--
echo
#
--
echo
# MDEV-5458 RQG hits 'sql/tztime.cc:799: my_time_t sec_since_epoch(int, int, int, int, int, int): Assertion `mon > 0 && mon < 13' failed.'
--
echo
#
SET
TIMESTAMP
=
UNIX_TIMESTAMP
(
'2014-01-22 18:19:20'
);
CREATE
TABLE
t1
(
t
TIME
);
INSERT
INTO
t1
VALUES
(
'03:22:30'
),(
'18:30:05'
);
SELECT
CONVERT_TZ
(
GREATEST
(
t
,
CURRENT_DATE
()),
'+02:00'
,
'+10:00'
)
FROM
t1
;
SELECT
GREATEST
(
t
,
CURRENT_DATE
())
FROM
t1
;
DROP
TABLE
t1
;
SET
TIMESTAMP
=
DEFAULT
;
--
echo
#
--
echo
# MDEV-5504 Server crashes in String::length on SELECT with MONTHNAME, GROUP BY, ROLLUP
...
...
sql/item_func.cc
View file @
0ad8eaeb
...
...
@@ -2947,11 +2947,6 @@ bool Item_func_min_max::get_date(MYSQL_TIME *ltime, ulonglong fuzzy_date)
}
unpack_time
(
min_max
,
ltime
);
if
(
!
(
fuzzy_date
&
TIME_TIME_ONLY
)
&&
((
null_value
=
check_date_with_warn
(
ltime
,
fuzzy_date
,
MYSQL_TIMESTAMP_ERROR
))))
return
true
;
if
(
compare_as_dates
->
field_type
()
==
MYSQL_TYPE_DATE
)
{
ltime
->
time_type
=
MYSQL_TIMESTAMP_DATE
;
...
...
@@ -2962,8 +2957,15 @@ bool Item_func_min_max::get_date(MYSQL_TIME *ltime, ulonglong fuzzy_date)
ltime
->
time_type
=
MYSQL_TIMESTAMP_TIME
;
ltime
->
hour
+=
(
ltime
->
month
*
32
+
ltime
->
day
)
*
24
;
ltime
->
month
=
ltime
->
day
=
0
;
if
(
adjust_time_range_with_warn
(
ltime
,
min
(
decimals
,
TIME_SECOND_PART_DIGITS
)))
return
(
null_value
=
true
);
}
if
(
!
(
fuzzy_date
&
TIME_TIME_ONLY
)
&&
((
null_value
=
check_date_with_warn
(
ltime
,
fuzzy_date
,
MYSQL_TIMESTAMP_ERROR
))))
return
true
;
return
(
null_value
=
0
);
}
...
...
sql/item_timefunc.cc
View file @
0ad8eaeb
...
...
@@ -2574,7 +2574,7 @@ bool Item_func_add_time::get_date(MYSQL_TIME *ltime, ulonglong fuzzy_date)
bool
is_time
=
0
;
long
days
,
microseconds
;
longlong
seconds
;
int
l_sign
=
sign
,
was_cut
=
0
;
int
l_sign
=
sign
;
if
(
is_date
)
// TIMESTAMP function
{
...
...
@@ -2625,16 +2625,7 @@ bool Item_func_add_time::get_date(MYSQL_TIME *ltime, ulonglong fuzzy_date)
}
ltime
->
hour
+=
days
*
24
;
MYSQL_TIME
copy
=
*
ltime
;
ErrConvTime
str
(
&
copy
);
check_time_range
(
ltime
,
decimals
,
&
was_cut
);
if
(
was_cut
)
make_truncated_value_warning
(
current_thd
,
MYSQL_ERROR
::
WARN_LEVEL_WARN
,
&
str
,
MYSQL_TIMESTAMP_TIME
,
NullS
);
return
(
null_value
=
0
);
return
(
null_value
=
adjust_time_range_with_warn
(
ltime
,
decimals
));
}
...
...
@@ -2672,7 +2663,7 @@ bool Item_func_timediff::get_date(MYSQL_TIME *ltime, ulonglong fuzzy_date)
DBUG_ASSERT
(
fixed
==
1
);
longlong
seconds
;
long
microseconds
;
int
l_sign
=
1
,
was_cut
=
0
;
int
l_sign
=
1
;
MYSQL_TIME
l_time1
,
l_time2
,
l_time3
;
ErrConvTime
str
(
&
l_time3
);
...
...
@@ -2716,12 +2707,8 @@ bool Item_func_timediff::get_date(MYSQL_TIME *ltime, ulonglong fuzzy_date)
return
(
null_value
=
1
);
*
ltime
=
l_time3
;
check_time_range
(
ltime
,
decimals
,
&
was_cut
);
return
(
null_value
=
adjust_time_range_with_warn
(
ltime
,
decimals
)
);
if
(
was_cut
)
make_truncated_value_warning
(
current_thd
,
MYSQL_ERROR
::
WARN_LEVEL_WARN
,
&
str
,
MYSQL_TIMESTAMP_TIME
,
NullS
);
return
(
null_value
=
0
);
}
/**
...
...
sql/sql_time.cc
View file @
0ad8eaeb
...
...
@@ -230,6 +230,20 @@ check_date_with_warn(const MYSQL_TIME *ltime, ulonglong fuzzy_date,
}
bool
adjust_time_range_with_warn
(
MYSQL_TIME
*
ltime
,
uint
dec
)
{
MYSQL_TIME
copy
=
*
ltime
;
ErrConvTime
str
(
&
copy
);
int
warnings
=
0
;
if
(
check_time_range
(
ltime
,
dec
,
&
warnings
))
return
true
;
if
(
warnings
)
make_truncated_value_warning
(
current_thd
,
MYSQL_ERROR
::
WARN_LEVEL_WARN
,
&
str
,
MYSQL_TIMESTAMP_TIME
,
NullS
);
return
false
;
}
/*
Convert a string to 8-bit representation,
for use in str_to_time/str_to_date/str_to_date.
...
...
sql/sql_time.h
View file @
0ad8eaeb
...
...
@@ -124,5 +124,6 @@ check_date(const MYSQL_TIME *ltime, ulonglong flags, int *was_cut)
}
bool
check_date_with_warn
(
const
MYSQL_TIME
*
ltime
,
ulonglong
fuzzy_date
,
timestamp_type
ts_type
);
bool
adjust_time_range_with_warn
(
MYSQL_TIME
*
ltime
,
uint
dec
);
#endif
/* SQL_TIME_INCLUDED */
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