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

SAPDB date/time finctions

mysql-test/r/cast.result:
  Changes for SAPDB date/time finctions
This commit is contained in:
unknown
2003-07-08 15:06:05 +05:00
parent 01e7f418af
commit 4adf180432
12 changed files with 238 additions and 236 deletions

View File

@ -44,10 +44,10 @@ t1 CREATE TABLE `t1` (
drop table t1;
select cast("2001-1-1" as date) = "2001-01-01";
cast("2001-1-1" as date) = "2001-01-01"
0
1
select cast("2001-1-1" as datetime) = "2001-01-01 00:00:00";
cast("2001-1-1" as datetime) = "2001-01-01 00:00:00"
0
1
select cast("1:2:3" as TIME) = "1:02:03";
cast("1:2:3" as TIME) = "1:02:03"
0