diff options
Diffstat (limited to 'mysql-test/r/innodb.result')
-rw-r--r-- | mysql-test/r/innodb.result | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/r/innodb.result b/mysql-test/r/innodb.result index fce75e31708..bddedb5f64a 100644 --- a/mysql-test/r/innodb.result +++ b/mysql-test/r/innodb.result @@ -900,3 +900,8 @@ explain select a,b,c from t1; table type possible_keys key key_len ref rows Extra t1 ALL NULL NULL NULL NULL 4 drop table t1; +create table t1 (testint int not null default 1); +desc t1; +Field Type Null Key Default Extra +testint int(11) 1 +drop table t1; |