diff options
author | unknown <Sinisa@sinisa.nasamreza.org> | 2001-12-29 15:17:09 +0200 |
---|---|---|
committer | unknown <Sinisa@sinisa.nasamreza.org> | 2001-12-29 15:17:09 +0200 |
commit | 38d4712ea8ba7d7c8344894034f66eab3d9b8704 (patch) | |
tree | 95e0008409e306d09044257a5bdca0d6dcb67606 | |
parent | 6ffd555155360ad13ab9bf1f8b050f3d46edb17d (diff) | |
download | mariadb-git-38d4712ea8ba7d7c8344894034f66eab3d9b8704.tar.gz |
Just a missing comment ...
mysql-test/t/create.test:
This is a test for creating proper column types
-rw-r--r-- | mysql-test/t/create.test | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/t/create.test b/mysql-test/t/create.test index 57edb684744..d07c1b920d4 100644 --- a/mysql-test/t/create.test +++ b/mysql-test/t/create.test @@ -74,4 +74,7 @@ create table t1(x varchar(50) ); create table t2 select x from t1 where 1=2; describe t1; describe t2; +drop table t2; +create table t2 select now() as a , curtime() as b, curdate() as c , 1+1 as d , 1.0 + 1 as e , 33333333333333333 + 3 as f; +describe t2; drop table t1,t2; |