summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl/t/rpl_mixed_ddl_dml.test
blob: c5b821ca90638dbc175a63e927b7d4630a2b770c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Mixed DDL-DML (CREATE ... SELECT ...) statements can only be
# replicated properly in statement-based replication.
# Currently statement based due to bug 12345
--source include/have_binlog_format_mixed_or_statement.inc

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;
select * from t1;
connection master;
--replace_result $SLAVE_MYPORT 9999
show slave hosts;
drop table t1;
sync_slave_with_master;
stop slave;
--source include/wait_for_slave_to_stop.inc
connection master;

# Test replication of timestamp

create table t2(id int auto_increment primary key, created datetime);
SET TIME_ZONE= '+03:00';
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;
save_master_pos;
connection slave;
start slave;
--source include/wait_for_slave_to_start.inc
sync_with_master;
select * from t2;
show create table t3;
show create table t5;
connection master;
drop table t2,t3,t5;
sync_slave_with_master;

# End of 4.1 tests
--source include/rpl_end.inc