mariadb/mysql-test/r/rpl_insert_id.result

90 lines
1.7 KiB
Text
Raw Normal View History

stop slave;
2003-01-28 08:17:10 +01:00
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
reset master;
reset slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
start slave;
2003-01-28 08:17:10 +01:00
create table t1(a int auto_increment, key(a));
create table t2(b int auto_increment, c int, key(b));
insert into t1 values (1),(2),(3);
insert into t1 values (null);
insert into t2 values (null,last_insert_id());
select * from t1;
a
1
2
3
4
2003-01-28 08:17:10 +01:00
select * from t2;
b c
1 4
2003-01-28 08:17:10 +01:00
drop table t1;
drop table t2;
create table t1(a int auto_increment, key(a)) engine=innodb;
create table t2(b int auto_increment, c int, key(b), foreign key(b) references t1(a)) engine=innodb;
2003-05-26 14:08:17 +02:00
SET FOREIGN_KEY_CHECKS=0;
2003-01-28 08:17:10 +01:00
insert into t1 values (10);
insert into t1 values (null),(null),(null);
insert into t2 values (5,0);
insert into t2 values (null,last_insert_id());
2003-05-26 14:08:17 +02:00
SET FOREIGN_KEY_CHECKS=1;
2003-01-28 08:17:10 +01:00
select * from t1;
a
10
11
12
13
2003-01-28 08:17:10 +01:00
select * from t2;
b c
5 0
6 11
2003-01-28 08:17:10 +01:00
drop table t2;
drop table t1;
create table t1(a int auto_increment, key(a));
create table t2(b int auto_increment, c int, key(b));
insert into t1 values (10);
insert into t1 values (null),(null),(null);
insert into t2 values (5,0);
insert into t2 (c) select * from t1;
select * from t2;
b c
5 0
6 10
7 11
8 12
9 13
select * from t1;
a
10
11
12
13
select * from t2;
b c
5 0
6 10
7 11
8 12
9 13
drop table t1;
drop table t2;
SET TIMESTAMP=1000000000;
CREATE TABLE t1 ( a INT UNIQUE );
SET FOREIGN_KEY_CHECKS=0;
INSERT INTO t1 VALUES (1),(1);
2005-02-24 17:25:06 +01:00
ERROR 23000: Duplicate entry '1' for key 1
drop table t1;
create table t1(a int auto_increment, key(a));
create table t2(a int);
insert into t1 (a) values (null);
insert into t2 (a) select a from t1 where a is null;
insert into t2 (a) select a from t1 where a is null;
select * from t2;
a
1
select * from t2;
a
1
drop table t1;
drop table t2;