mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Fixed problem with default & InnoDB tables.
Docs/manual.texi: ChangeLog
This commit is contained in:
@ -499,3 +499,5 @@ table type possible_keys key key_len ref rows Extra
|
||||
t1 index NULL b 4 NULL 4 Using index
|
||||
table type possible_keys key key_len ref rows Extra
|
||||
t1 ALL NULL NULL NULL NULL 4
|
||||
Field Type Null Key Default Extra
|
||||
testint int(11) 1
|
||||
|
@ -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;
|
||||
|
Reference in New Issue
Block a user