1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Fixed problem with default & InnoDB tables.

Docs/manual.texi:
  ChangeLog
This commit is contained in:
unknown
2001-12-13 19:06:14 +02:00
parent 2d1e16eb04
commit c0de7ffcc8
5 changed files with 29 additions and 9 deletions

View File

@@ -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;