mirror of
https://github.com/MariaDB/server.git
synced 2025-09-03 20:43:11 +03:00
When converting a table (test.s3_table) from S3 to another engine, the following will be logged to the binary log: DROP TABLE IF EXISTS test.t1; CREATE OR REPLACE TABLE test.t1 (...) ENGINE=new_engine INSERT rows to test.t1 in binary-row-log-format The bug is that the above statements are logged one by one to the binary log. This means that a fast slave, configured to use the same S3 storage as the master, would be able to execute the DROP and CREATE from the binary log before the master has finished the ALTER TABLE. In this case the slave would ignore the DROP (as it's on a S3 table) but it will stop on CREATE of the local tale, as the table is still exists in S3. The REPLACE part will be ignored by the slave as it can't touch the S3 table. The fix is to ensure that all the above statements is written to binary log AFTER the table has been deleted from S3.
180 lines
3.8 KiB
PHP
180 lines
3.8 KiB
PHP
--source include/have_s3.inc
|
|
--source include/have_sequence.inc
|
|
|
|
#
|
|
# Tests for S3 replication
|
|
#
|
|
|
|
sync_slave_with_master;
|
|
let $SLAVE_DATADIR= `select @@datadir`;
|
|
connection master;
|
|
|
|
#
|
|
# Create unique database for running the tests
|
|
#
|
|
--source create_database.inc
|
|
|
|
--echo #
|
|
--echo # Test ALTER TABLE ENGINE S3
|
|
--echo #
|
|
|
|
create table t1 (a int, b int) engine=aria;
|
|
insert into t1 select seq,seq+10 from seq_1_to_10;
|
|
alter table t1 engine=s3;
|
|
show create table t1;
|
|
|
|
sync_slave_with_master;
|
|
--replace_result $database database
|
|
--eval use $database
|
|
select * from t1 limit 2;
|
|
--file_exists $SLAVE_DATADIR/$database/t1.frm
|
|
|
|
connection master;
|
|
alter table t1 add column c int;
|
|
|
|
sync_slave_with_master;
|
|
--error 1
|
|
--file_exists $SLAVE_DATADIR/$database/t1.frm
|
|
--replace_result $database database
|
|
select * from t1,t1 as t1_tmp limit 2;
|
|
|
|
--echo # Now test when the .frm table is out of date on the slave
|
|
stop slave;
|
|
|
|
connection master;
|
|
alter table t1 add column d int, engine=s3;
|
|
connection slave;
|
|
select * from t1 limit 2;
|
|
start slave;
|
|
connection master;
|
|
sync_slave_with_master;
|
|
select * from t1 limit 2;
|
|
|
|
--echo # Same without tables in the table cache;
|
|
stop slave;
|
|
flush tables;
|
|
connection master;
|
|
alter table t1 add column e int, engine=s3;
|
|
connection slave;
|
|
select * from t1 limit 2;
|
|
start slave;
|
|
connection master;
|
|
sync_slave_with_master;
|
|
select * from t1 limit 2;
|
|
connection master;
|
|
|
|
--echo # Convert S3 table to Aria. Rows should be binary logged
|
|
alter table t1 engine=aria;
|
|
sync_slave_with_master;
|
|
select * from t1 limit 2;
|
|
show create table t1;
|
|
|
|
--echo # Convert S3 table to Aria with rename. Rows should be binary logged
|
|
connection master;
|
|
alter table t1 engine=s3;
|
|
alter table t1 rename t2, engine=aria;
|
|
sync_slave_with_master;
|
|
select * from t2 limit 2;
|
|
show create table t2;
|
|
|
|
connection master;
|
|
drop table t2;
|
|
|
|
--echo #
|
|
--echo # Test RENAME
|
|
--echo #
|
|
|
|
create table t1 (a int, b int) engine=aria;
|
|
insert into t1 select seq,seq+10 from seq_1_to_10;
|
|
alter table t1 engine=s3;
|
|
|
|
rename table t1 to t2;
|
|
sync_slave_with_master;
|
|
--replace_result $database database
|
|
--error 1
|
|
--file_exists $SLAVE_DATADIR/$database/t2.frm
|
|
--error ER_NO_SUCH_TABLE
|
|
select * from t1 limit 2;
|
|
select * from t2 limit 2;
|
|
connection master;
|
|
|
|
alter table t2 add column f int, rename t1;
|
|
select * from t1 limit 2;
|
|
sync_slave_with_master;
|
|
--error 1
|
|
--file_exists $SLAVE_DATADIR/$database/t1.frm
|
|
--error 1
|
|
--file_exists $SLAVE_DATADIR/$database/t2.frm
|
|
select * from t1 limit 2;
|
|
--replace_result $database database
|
|
--error ER_NO_SUCH_TABLE
|
|
select * from t2 limit 2;
|
|
|
|
# Check rename of table when a new table has replaced the original one
|
|
|
|
connection slave;
|
|
stop slave;
|
|
connection master;
|
|
rename table t1 to t2;
|
|
create table t1 (a int, b int) engine=aria;
|
|
alter table t1 engine=s3;
|
|
connection slave;
|
|
start slave;
|
|
connection master;
|
|
sync_slave_with_master;
|
|
select * from t1 limit 2;
|
|
select * from t2 limit 2;
|
|
connection master;
|
|
|
|
--echo #
|
|
--echo # Test DROP
|
|
--echo #
|
|
drop table t1,t2;
|
|
|
|
sync_slave_with_master;
|
|
--error 1
|
|
--file_exists $SLAVE_DATADIR/$database/t1.frm
|
|
--error 1
|
|
--file_exists $SLAVE_DATADIR/$database/t2.frm
|
|
--replace_result $database database
|
|
--error ER_NO_SUCH_TABLE
|
|
select * from t1 limit 2;
|
|
--replace_result $database database
|
|
--error ER_NO_SUCH_TABLE
|
|
select * from t2 limit 2;
|
|
|
|
connection master;
|
|
|
|
--echo #
|
|
--echo # Test LIKE
|
|
--echo #
|
|
|
|
create table t1 (a int,b int);
|
|
alter table t1 engine=s3;
|
|
--replace_result $database database
|
|
--error ER_CANT_CREATE_TABLE
|
|
create table t2 like t1;
|
|
sync_slave_with_master;
|
|
--replace_result $database database
|
|
--error ER_NO_SUCH_TABLE
|
|
show create table t2;
|
|
connection master;
|
|
--replace_result $database database
|
|
drop table if exists t1,t2;
|
|
|
|
--echo #
|
|
--echo # Check slave binary log
|
|
--echo #
|
|
|
|
sync_slave_with_master;
|
|
--let $binlog_database=$database
|
|
--source include/show_binlog_events.inc
|
|
connection master;
|
|
|
|
--echo #
|
|
--echo # clean up
|
|
--echo #
|
|
--source drop_database.inc
|
|
sync_slave_with_master;
|
|
--source include/rpl_end.inc
|