mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 18:41:56 +01:00
a418c99200
update tests and results, fix bugs
9 lines
257 B
Text
9 lines
257 B
Text
--source include/have_innodb.inc
|
|
|
|
create table t1 (c2 int as (1+1), c1 int primary key auto_increment) engine=innodb;
|
|
insert into t1(c1) values (null),(null),(null);
|
|
select * from t1;
|
|
alter table t1 auto_increment = 3;
|
|
show create table t1;
|
|
drop table t1;
|
|
|