mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 20:36:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			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;
 | 
						|
 |