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
1c6d508a
Commit
1c6d508a
authored
Apr 18, 2014
by
Alexander Barkov
Browse files
Options
Browse Files
Download
Plain Diff
Merge from 5.3
parents
f7a47e13
8db600f9
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
235 additions
and
37 deletions
+235
-37
mysql-test/r/type_date.result
mysql-test/r/type_date.result
+46
-0
mysql-test/r/type_datetime.result
mysql-test/r/type_datetime.result
+40
-0
mysql-test/suite/funcs_1/r/innodb_func_view.result
mysql-test/suite/funcs_1/r/innodb_func_view.result
+8
-4
mysql-test/suite/funcs_1/r/memory_func_view.result
mysql-test/suite/funcs_1/r/memory_func_view.result
+8
-4
mysql-test/suite/funcs_1/r/myisam_func_view.result
mysql-test/suite/funcs_1/r/myisam_func_view.result
+8
-4
mysql-test/t/type_date.test
mysql-test/t/type_date.test
+28
-0
mysql-test/t/type_datetime.test
mysql-test/t/type_datetime.test
+29
-0
sql/field.cc
sql/field.cc
+8
-0
sql/item_timefunc.cc
sql/item_timefunc.cc
+6
-25
sql/sql_time.cc
sql/sql_time.cc
+51
-0
sql/sql_time.h
sql/sql_time.h
+3
-0
No files found.
mysql-test/r/type_date.result
View file @
1c6d508a
...
...
@@ -349,6 +349,52 @@ Warning 1292 Incorrect datetime value: '0'
Warning 1292 Incorrect datetime value: '0'
SET @@timestamp=DEFAULT;
#
# MDEV-5041 Inserting a TIME with hour>24 into a DATETIME column produces a wrong value
#
SELECT CAST(TIME('-800:20:30') AS DATE);
CAST(TIME('-800:20:30') AS DATE)
NULL
Warnings:
Warning 1292 Truncated incorrect date value: '-800:20:30'
SELECT CAST(TIME('800:20:30') AS DATE);
CAST(TIME('800:20:30') AS DATE)
0000-01-02
SELECT CAST(TIME('33 08:20:30') AS DATE);
CAST(TIME('33 08:20:30') AS DATE)
0000-01-02
CREATE TABLE t1 (a DATE);
INSERT INTO t1 VALUES (TIME('800:20:30'));
Warnings:
Note 1265 Data truncated for column 'a' at row 1
INSERT INTO t1 VALUES (TIME('33 08:20:30'));
Warnings:
Note 1265 Data truncated for column 'a' at row 1
SET SQL_MODE=NO_ZERO_IN_DATE;
INSERT INTO t1 VALUES (TIME('48:20:30'));
Warnings:
Warning 1265 Data truncated for column 'a' at row 1
SET SQL_MODE=DEFAULT;
SELECT * FROM t1;
a
0000-01-02
0000-01-02
0000-00-00
DROP TABLE t1;
CREATE PROCEDURE test5041()
BEGIN
DECLARE t TIME;
DECLARE d DATE;
SET t= TIME('800:00:00');
SET d= t;
SELECT d;
END;|
call test5041();
d
0000-01-02
Warnings:
Note 1265 Data truncated for column 'd' at row 1
drop procedure test5041;
#
# End of 5.3 tests
#
#
...
...
mysql-test/r/type_datetime.result
View file @
1c6d508a
...
...
@@ -684,6 +684,46 @@ CONVERT_TZ(GREATEST(TIMESTAMP('2021-00-00'),TIMESTAMP('2022-00-00')),'+00:00','+
NULL
Warnings:
Warning 1292 Incorrect datetime value: '2022-00-00 00:00:00'
#
# MDEV-5041 Inserting a TIME with hour>24 into a DATETIME column produces a wrong value
#
SELECT CAST(TIME('-800:20:30') AS DATETIME);
CAST(TIME('-800:20:30') AS DATETIME)
NULL
Warnings:
Warning 1292 Truncated incorrect datetime value: '-800:20:30'
SELECT CAST(TIME('800:20:30') AS DATETIME);
CAST(TIME('800:20:30') AS DATETIME)
0000-01-02 08:20:30
SELECT CAST(TIME('33 08:20:30') AS DATETIME);
CAST(TIME('33 08:20:30') AS DATETIME)
0000-01-02 08:20:30
CREATE TABLE t1 (a DATETIME);
INSERT INTO t1 VALUES (TIME('800:20:30'));
INSERT INTO t1 VALUES (TIME('33 08:20:30'));
SET SQL_MODE=NO_ZERO_IN_DATE;
INSERT INTO t1 VALUES (TIME('48:20:30'));
Warnings:
Warning 1265 Data truncated for column 'a' at row 1
SET SQL_MODE=DEFAULT;
SELECT * FROM t1;
a
0000-01-02 08:20:30
0000-01-02 08:20:30
0000-00-00 00:00:00
DROP TABLE t1;
CREATE PROCEDURE test5041()
BEGIN
DECLARE t TIME;
DECLARE dt DATETIME;
SET t= TIME('800:20:30');
SET dt= t;
SELECT dt;
END;|
call test5041();
dt
0000-01-02 08:20:30
drop procedure test5041;
End of 5.3 tests
#
# Start of 5.5 tests
...
...
mysql-test/suite/funcs_1/r/innodb_func_view.result
View file @
1c6d508a
No preview for this file type
mysql-test/suite/funcs_1/r/memory_func_view.result
View file @
1c6d508a
No preview for this file type
mysql-test/suite/funcs_1/r/myisam_func_view.result
View file @
1c6d508a
No preview for this file type
mysql-test/t/type_date.test
View file @
1c6d508a
...
...
@@ -321,6 +321,34 @@ SELECT
DATE
(
'20011107'
)
>
IFNULL
(
DATE
(
'0'
),
CURRENT_DATE
)
AS
cmp
;
SET
@@
timestamp
=
DEFAULT
;
--
echo
#
--
echo
# MDEV-5041 Inserting a TIME with hour>24 into a DATETIME column produces a wrong value
--
echo
#
SELECT
CAST
(
TIME
(
'-800:20:30'
)
AS
DATE
);
SELECT
CAST
(
TIME
(
'800:20:30'
)
AS
DATE
);
SELECT
CAST
(
TIME
(
'33 08:20:30'
)
AS
DATE
);
CREATE
TABLE
t1
(
a
DATE
);
INSERT
INTO
t1
VALUES
(
TIME
(
'800:20:30'
));
INSERT
INTO
t1
VALUES
(
TIME
(
'33 08:20:30'
));
SET
SQL_MODE
=
NO_ZERO_IN_DATE
;
INSERT
INTO
t1
VALUES
(
TIME
(
'48:20:30'
));
SET
SQL_MODE
=
DEFAULT
;
SELECT
*
FROM
t1
;
DROP
TABLE
t1
;
DELIMITER
|
;
CREATE
PROCEDURE
test5041
()
BEGIN
DECLARE
t
TIME
;
DECLARE
d
DATE
;
SET
t
=
TIME
(
'800:00:00'
);
SET
d
=
t
;
SELECT
d
;
END
;
|
DELIMITER
;
|
call
test5041
();
drop
procedure
test5041
;
--
echo
#
--
echo
# End of 5.3 tests
--
echo
#
...
...
mysql-test/t/type_datetime.test
View file @
1c6d508a
...
...
@@ -491,6 +491,35 @@ drop table t1,t2;
--
echo
#
SELECT
CONVERT_TZ
(
GREATEST
(
TIMESTAMP
(
'2021-00-00'
),
TIMESTAMP
(
'2022-00-00'
)),
'+00:00'
,
'+7:5'
);
--
echo
#
--
echo
# MDEV-5041 Inserting a TIME with hour>24 into a DATETIME column produces a wrong value
--
echo
#
SELECT
CAST
(
TIME
(
'-800:20:30'
)
AS
DATETIME
);
SELECT
CAST
(
TIME
(
'800:20:30'
)
AS
DATETIME
);
SELECT
CAST
(
TIME
(
'33 08:20:30'
)
AS
DATETIME
);
CREATE
TABLE
t1
(
a
DATETIME
);
INSERT
INTO
t1
VALUES
(
TIME
(
'800:20:30'
));
INSERT
INTO
t1
VALUES
(
TIME
(
'33 08:20:30'
));
SET
SQL_MODE
=
NO_ZERO_IN_DATE
;
INSERT
INTO
t1
VALUES
(
TIME
(
'48:20:30'
));
SET
SQL_MODE
=
DEFAULT
;
SELECT
*
FROM
t1
;
DROP
TABLE
t1
;
DELIMITER
|
;
CREATE
PROCEDURE
test5041
()
BEGIN
DECLARE
t
TIME
;
DECLARE
dt
DATETIME
;
SET
t
=
TIME
(
'800:20:30'
);
SET
dt
=
t
;
SELECT
dt
;
END
;
|
DELIMITER
;
|
call
test5041
();
drop
procedure
test5041
;
--
echo
End
of
5.3
tests
--
echo
#
...
...
sql/field.cc
View file @
1c6d508a
...
...
@@ -5058,6 +5058,13 @@ int Field_temporal::store_time_dec(MYSQL_TIME *ltime, uint dec)
int
error
=
0
,
have_smth_to_conv
=
1
;
MYSQL_TIME
l_time
=
*
ltime
;
ErrConvTime
str
(
ltime
);
if
(
l_time
.
time_type
==
MYSQL_TIMESTAMP_TIME
&&
time_to_datetime
(
&
l_time
))
{
have_smth_to_conv
=
0
;
error
=
1
;
goto
store
;
}
/*
We don't perform range checking here since values stored in TIME
structure always fit into DATETIME range.
...
...
@@ -5066,6 +5073,7 @@ int Field_temporal::store_time_dec(MYSQL_TIME *ltime, uint dec)
(
current_thd
->
variables
.
sql_mode
&
(
MODE_NO_ZERO_IN_DATE
|
MODE_NO_ZERO_DATE
|
MODE_INVALID_DATES
)),
&
error
);
store:
return
store_TIME_with_warning
(
&
l_time
,
&
str
,
error
,
have_smth_to_conv
);
}
...
...
sql/item_timefunc.cc
View file @
1c6d508a
...
...
@@ -2443,10 +2443,10 @@ bool Item_date_typecast::get_date(MYSQL_TIME *ltime, ulonglong fuzzy_date)
if
(
get_arg0_date
(
ltime
,
fuzzy_date
&
~
TIME_TIME_ONLY
))
return
1
;
ltime
->
hour
=
ltime
->
minute
=
ltime
->
second
=
ltime
->
second_part
=
0
;
ltime
->
time_type
=
MYSQL_TIMESTAMP_DATE
;
return
(
null_value
=
check_date_with_warn
(
ltime
,
fuzzy_date
,
MYSQL_TIMESTAMP_DATE
))
;
if
(
make_date_with_warn
(
ltime
,
fuzzy_date
,
MYSQL_TIMESTAMP_DATE
))
return
(
null_value
=
1
)
;
return
0
;
}
...
...
@@ -2458,28 +2458,9 @@ bool Item_datetime_typecast::get_date(MYSQL_TIME *ltime, ulonglong fuzzy_date)
if
(
decimals
<
TIME_SECOND_PART_DIGITS
)
ltime
->
second_part
=
sec_part_truncate
(
ltime
->
second_part
,
decimals
);
if
(
make_date_with_warn
(
ltime
,
fuzzy_date
,
MYSQL_TIMESTAMP_DATETIME
))
return
(
null_value
=
1
);
/*
ltime is valid MYSQL_TYPE_TIME (according to fuzzy_date).
But not every valid TIME value is a valid DATETIME value!
*/
if
(
ltime
->
time_type
==
MYSQL_TIMESTAMP_TIME
)
{
if
(
ltime
->
neg
)
{
ErrConvTime
str
(
ltime
);
make_truncated_value_warning
(
current_thd
,
MYSQL_ERROR
::
WARN_LEVEL_WARN
,
&
str
,
MYSQL_TIMESTAMP_DATETIME
,
0
);
return
(
null_value
=
1
);
}
uint
day
=
ltime
->
hour
/
24
;
ltime
->
hour
%=
24
;
ltime
->
month
=
day
/
31
;
ltime
->
day
=
day
%
31
;
}
ltime
->
time_type
=
MYSQL_TIMESTAMP_DATETIME
;
return
0
;
}
...
...
sql/sql_time.cc
View file @
1c6d508a
...
...
@@ -1100,6 +1100,57 @@ int my_time_compare(MYSQL_TIME *a, MYSQL_TIME *b)
}
/**
Convert TIME to DATETIME.
@param ltime The value to convert.
@return false on success, true of error (negative time).
*/
bool
time_to_datetime
(
MYSQL_TIME
*
ltime
)
{
DBUG_ASSERT
(
ltime
->
time_type
==
MYSQL_TIMESTAMP_TIME
);
DBUG_ASSERT
(
ltime
->
year
==
0
);
DBUG_ASSERT
(
ltime
->
month
==
0
);
DBUG_ASSERT
(
ltime
->
day
==
0
);
if
(
ltime
->
neg
)
return
true
;
uint
day
=
ltime
->
hour
/
24
;
ltime
->
hour
%=
24
;
ltime
->
month
=
day
/
31
;
ltime
->
day
=
day
%
31
;
return
false
;
}
/**
Return a valid DATE or DATETIME value from an arbitrary MYSQL_TIME.
If ltime is TIME, it's first converted to DATETIME.
If ts_type is DATE, hhmmss is set to zero.
The date part of the result is checked against fuzzy_date.
@param ltime The value to convert.
@param fuzzy_date Flags to check date.
@param ts_type The type to convert to.
@return false on success, true of error (negative time).*/
bool
make_date_with_warn
(
MYSQL_TIME
*
ltime
,
ulonglong
fuzzy_date
,
timestamp_type
ts_type
)
{
DBUG_ASSERT
(
ts_type
==
MYSQL_TIMESTAMP_DATE
||
ts_type
==
MYSQL_TIMESTAMP_DATETIME
);
if
(
ltime
->
time_type
==
MYSQL_TIMESTAMP_TIME
&&
time_to_datetime
(
ltime
))
{
/* e.g. negative time */
ErrConvTime
str
(
ltime
);
make_truncated_value_warning
(
current_thd
,
MYSQL_ERROR
::
WARN_LEVEL_WARN
,
&
str
,
ts_type
,
0
);
return
true
;
}
if
((
ltime
->
time_type
=
ts_type
)
==
MYSQL_TIMESTAMP_DATE
)
ltime
->
hour
=
ltime
->
minute
=
ltime
->
second
=
ltime
->
second_part
=
0
;
return
check_date_with_warn
(
ltime
,
fuzzy_date
,
ts_type
);
}
/*
Convert a TIME value to DAY-TIME interval, e.g. for extraction:
EXTRACT(DAY FROM x), EXTRACT(HOUR FROM x), etc.
...
...
sql/sql_time.h
View file @
1c6d508a
...
...
@@ -33,6 +33,7 @@ typedef struct st_known_date_time_format KNOWN_DATE_TIME_FORMAT;
ulong
convert_period_to_month
(
ulong
period
);
ulong
convert_month_to_period
(
ulong
month
);
bool
time_to_datetime
(
MYSQL_TIME
*
ltime
);
void
time_to_daytime_interval
(
MYSQL_TIME
*
l_time
);
bool
get_date_from_daynr
(
long
daynr
,
uint
*
year
,
uint
*
month
,
uint
*
day
);
my_time_t
TIME_to_timestamp
(
THD
*
thd
,
const
MYSQL_TIME
*
t
,
uint
*
error_code
);
...
...
@@ -124,6 +125,8 @@ 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
make_date_with_warn
(
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