summaryrefslogtreecommitdiff
path: root/mysql-test/t
diff options
context:
space:
mode:
authorunknown <monty@hundin.mysql.fi>2001-12-13 20:07:04 +0200
committerunknown <monty@hundin.mysql.fi>2001-12-13 20:07:04 +0200
commitec2e031ac0b7dcaf2fa32c5a7f0706cc1865c2a7 (patch)
tree9bb687659d58e8ad2fe12369e078456c3a35a814 /mysql-test/t
parent77629c20230e92df2617ac4db24a12a5607af0da (diff)
parent6b1bb8750d997e4f39270801fc2bea7e83e18446 (diff)
downloadmariadb-git-ec2e031ac0b7dcaf2fa32c5a7f0706cc1865c2a7.tar.gz
Merge work:/home/bk/mysql into hundin.mysql.fi:/my/bk/mysql
Diffstat (limited to 'mysql-test/t')
-rw-r--r--mysql-test/t/innodb.test8
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/t/innodb.test b/mysql-test/t/innodb.test
index f0e9f8cf72f..a962f120d4e 100644
--- a/mysql-test/t/innodb.test
+++ b/mysql-test/t/innodb.test
@@ -529,3 +529,11 @@ explain select a,b from t1 order by b;
explain select a,b from t1;
explain select a,b,c from t1;
drop table t1;
+
+#
+# Check describe
+#
+
+create table t1 (testint int not null default 1) type=innodb;
+desc t1;
+drop table t1;