summaryrefslogtreecommitdiff
path: root/mysql-test/suite/compat/oracle/r/type_date.result
blob: 0989fc593d260d5921e4e95c7b0acc93d59ff42d (plain)
1
2
3
4
5
6
7
8
SET sql_mode=ORACLE;
CREATE TABLE t1 (a DATE);
SHOW CREATE TABLE t1;
Table	Create Table
t1	CREATE TABLE "t1" (
  "a" datetime DEFAULT NULL
)
DROP TABLE t1;