mariadb/mysql-test/t/rpl000002.test

40 lines
889 B
Text
Raw Normal View History

source include/master-slave.inc;
# Test replication of auto_increment
create table t1 (n int auto_increment primary key);
set insert_id = 2000;
insert into t1 values (NULL),(NULL),(NULL);
sync_slave_with_master;
2001-02-15 05:23:20 +01:00
select * from t1;
connection master;
--replace_result $SLAVE_MYPORT 9999
show slave hosts;
drop table t1;
sync_slave_with_master;
stop slave;
2001-02-15 05:23:20 +01:00
connection master;
# Test replication of timestamp
2001-02-15 05:23:20 +01:00
create table t2(id int auto_increment primary key, created datetime);
set timestamp=12345;
insert into t2 set created=now();
select * from t2;
# Test replication of CREATE .. LIKE (Bug #2557)
create table t3 like t2;
create temporary table t4 like t2;
create table t5 select * from t4;
2001-02-15 05:23:20 +01:00
save_master_pos;
connection slave;
start slave;
2001-02-15 05:23:20 +01:00
sync_with_master;
select * from t2;
show create table t3;
show create table t5;
2001-02-15 05:23:20 +01:00
connection master;
drop table t2,t3,t5;
sync_slave_with_master;