1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

fix auto-increment in sub-key and insert ... select

This commit is contained in:
unknown
2003-03-02 01:48:57 +01:00
parent e0ba590fc9
commit 6a933b2e08
6 changed files with 26 additions and 6 deletions

View File

@ -84,6 +84,16 @@ ordid ord
3 sdj
1 zzz
drop table t1;
create table t1 (sid char(5), id int(2) NOT NULL auto_increment, key(sid, id));
create table t2 (sid char(20), id int(2));
insert into t2 values ('skr',NULL),('skr',NULL),('test',NULL);
insert into t1 select * from t2;
select * from t1;
sid id
skr 1
skr 2
test 1
drop table t1,t2;
create table t1 (a int not null primary key auto_increment);
insert into t1 values (0);
update t1 set a=0;