mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 18:20:07 +01:00
22 lines
416 B
Text
22 lines
416 B
Text
include/rpl_init.inc [topology=1->2->3]
|
|
connection server_1;
|
|
create table t1 (id int not null auto_increment primary key, i int) engine=InnoDB;
|
|
insert into t1 (i) values (-1);
|
|
insert into t1 (i) values (LAST_INSERT_ID());
|
|
select * from t1;
|
|
id i
|
|
1 -1
|
|
2 1
|
|
connection server_2;
|
|
select * from t1;
|
|
id i
|
|
1 -1
|
|
2 1
|
|
connection server_3;
|
|
select * from t1;
|
|
id i
|
|
1 -1
|
|
2 1
|
|
connection server_1;
|
|
drop table t1;
|
|
include/rpl_end.inc
|