mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
10 lines
257 B
Plaintext
10 lines
257 B
Plaintext
--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;
|
|
|