自增字段写入数据表现不一致的情况

create table t6 (
id int(1) not null auto_increment,
name varchar(64),
primary key(id) nonclustered
) engine=innodb;
这样t6和t7的表现就一样了