mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
72da2e4c94
Added CEIL as an alias for CEILING Cleaned up CHECK constraint handling. (We don't anymore require braces after CHECK) Added casting to CHAR. mysql-test/r/bigint.result: Moved casting test to cast.test mysql-test/r/func_time.result: Test of new functions mysql-test/t/bigint.test: Moved casting test to cast.test mysql-test/t/func_time.test: Test of new functions sql/item_create.cc: Added casting to CHAR sql/item_func.h: Added casting to CHAR sql/item_timefunc.h: Added casting to CHAR sql/lex.h: Added new ANSI functions LOCALTIME, LOCALTIMESTAMP and CURRENT_USER Added CEIL as an alias for CEILING sql/sql_yacc.yy: Cleaned up CHECK constraint handling.
22 lines
681 B
Text
22 lines
681 B
Text
#
|
|
# Test of cast function
|
|
#
|
|
|
|
select CAST(1-2 AS UNSIGNED);
|
|
select CAST(CAST(1-2 AS UNSIGNED) AS SIGNED INTEGER);
|
|
select CONVERT('-1',UNSIGNED);
|
|
select cast(-5 as unsigned) | 1, cast(-5 as unsigned) & -1;
|
|
select cast(-5 as unsigned) -1, cast(-5 as unsigned) + 1;
|
|
select ~5, cast(~5 as signed);
|
|
select cast(5 as unsigned) -6.0;
|
|
select cast("A" as binary) = "a", cast(BINARY "a" as CHAR) = "A";
|
|
select cast("2001-1-1" as DATE), cast("2001-1-1" as DATETIME);
|
|
select cast("1:2:3" as TIME);
|
|
|
|
#
|
|
# The following should be fixed in 4.1
|
|
#
|
|
|
|
select cast("2001-1-1" as date) = "2001-01-01";
|
|
select cast("2001-1-1" as datetime) = "2001-01-01 00:00:00";
|
|
select cast("1:2:3" as TIME) = "1:02:03";
|