1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

MDEV-13966 Parameter data type control for Item_temporal_func

This commit is contained in:
Alexander Barkov
2017-09-30 11:17:19 +04:00
parent ca38b93e35
commit aa582dedcb
10 changed files with 210 additions and 0 deletions

View File

@ -4786,5 +4786,36 @@ ERROR HY000: Illegal parameter data type geometry for operation 'inet_aton'
SELECT LAST_INSERT_ID(POINT(1,1));
ERROR HY000: Illegal parameter data type geometry for operation 'last_insert_id'
#
# MDEV-13966 Parameter data type control for Item_temporal_func
#
SELECT FROM_DAYS(POINT(1,1));
ERROR HY000: Illegal parameter data type geometry for operation 'from_days'
SELECT MAKEDATE(POINT(1,1),1);
ERROR HY000: Illegal parameter data type geometry for operation 'makedate'
SELECT MAKEDATE(1, POINT(1,1));
ERROR HY000: Illegal parameter data type geometry for operation 'makedate'
SELECT LAST_DAY(POINT(1,1));
ERROR HY000: Illegal parameter data type geometry for operation 'last_day'
SELECT SEC_TO_TIME(POINT(1,1));
ERROR HY000: Illegal parameter data type geometry for operation 'sec_to_time'
SELECT TIMEDIFF(POINT(1,1),1);
ERROR HY000: Illegal parameter data type geometry for operation 'timediff'
SELECT TIMEDIFF(1, POINT(1,1));
ERROR HY000: Illegal parameter data type geometry for operation 'timediff'
SELECT MAKETIME(POINT(1,1),1,1);
ERROR HY000: Illegal parameter data type geometry for operation 'maketime'
SELECT MAKETIME(1, POINT(1,1), 1);
ERROR HY000: Illegal parameter data type geometry for operation 'maketime'
SELECT MAKETIME(1, 1, POINT(1,1));
ERROR HY000: Illegal parameter data type geometry for operation 'maketime'
SELECT FROM_UNIXTIME(POINT(1,1));
ERROR HY000: Illegal parameter data type geometry for operation 'from_unixtime'
SELECT CONVERT_TZ(POINT(1,1),1,1);
ERROR HY000: Illegal parameter data type geometry for operation 'convert_tz'
SELECT CONVERT_TZ(1, POINT(1,1), 1);
ERROR HY000: Illegal parameter data type geometry for operation 'convert_tz'
SELECT CONVERT_TZ(1, 1, POINT(1,1));
ERROR HY000: Illegal parameter data type geometry for operation 'convert_tz'
#
# End of 10.3 tests
#