mirror of
https://github.com/MariaDB/server.git
synced 2025-08-31 22:22:30 +03:00
mysql-test/t/rpl_relay_space_myisam.test: Added Comment mysql-test/t/rpl_ndb_relay_space.test: Added more comments BitKeeper/deleted/.del-rpl_relay_space_ndb.result~4d6013c0afef9b5e: Delete: mysql-test/r/rpl_relay_space_ndb.result mysql-test/t/rpl_relay_space_innodb.test: Added Comment BitKeeper/deleted/.del-rpl000006.test~6da9f1808deb79c7: Delete: mysql-test/t/rpl000006.test BitKeeper/deleted/.del-rpl000004.test~61532b03f9ad2734: Delete: mysql-test/t/rpl000004.test BitKeeper/deleted/.del-rpl000004.result~a3147834a662043a: Delete: mysql-test/r/rpl000004.result mysql-test/t/rpl_mixed_ddl_dml.test: Rename: mysql-test/t/rpl000002.test -> mysql-test/t/rpl_mixed_ddl_dml.test mysql-test/r/rpl_mixed_ddl_dml.result: Rename: mysql-test/r/rpl000002.result -> mysql-test/r/rpl_mixed_ddl_dml.result mysql-test/t/rpl_ignore_table_update.test: Rename: mysql-test/t/rpl000008.test -> mysql-test/t/rpl_ignore_table_update.test mysql-test/t/rpl_ignore_table_update-slave.opt: Rename: mysql-test/t/rpl000008-slave.opt -> mysql-test/t/rpl_ignore_table_update-slave.opt mysql-test/r/rpl_ignore_table_update.result: Rename: mysql-test/r/rpl000008.result -> mysql-test/r/rpl_ignore_table_update.result mysql-test/t/rpl_load_table_from_master.test: Fixing test since test where combined mysql-test/r/rpl_load_table_from_master.result: Updated results file BitKeeper/deleted/.del-rpl000004.a.result~3415f066cb91c460: Delete: mysql-test/r/rpl000004.a.result BitKeeper/deleted/.del-rpl000004.b.result~352b35351551485: Delete: mysql-test/r/rpl000004.b.result mysql-test/t/disabled.def: added rpl_ndb_relay_space Results are not deterministic mysql-test/t/rpl_load_from_master.test: Rename: mysql-test/t/rpl000009.test -> mysql-test/t/rpl_load_from_master.test mysql-test/t/rpl_load_from_master-slave.opt: Rename: mysql-test/t/rpl000009-slave.opt -> mysql-test/t/rpl_load_from_master-slave.opt mysql-test/r/rpl_load_from_master.result: Rename: mysql-test/r/rpl000009.result -> mysql-test/r/rpl_load_from_master.result mysql-test/t/rpl_temp_table.test: Rename: mysql-test/t/rpl_000012.test -> mysql-test/t/rpl_temp_table.test mysql-test/r/rpl_temp_table.result: Rename: mysql-test/r/rpl_000012.result -> mysql-test/r/rpl_temp_table.result
94 lines
2.6 KiB
Plaintext
94 lines
2.6 KiB
Plaintext
###########################################################
|
|
# Change Author: JBM
|
|
# Change Date: 2006-2-2
|
|
# Change: Added ENGINE=$engine_type for first create table
|
|
# Reason: Only MyISAM supports load from master no need to
|
|
# run test case for other engines, in addition test will
|
|
# fail if other engines are set as default engine
|
|
###########################################################
|
|
# Change Author: JBM
|
|
# Change Date: 2006-2-3
|
|
# Change: removed ENGINE=$engine_type for first create table
|
|
# and renamed test file to rpl_load_table_from_master.test.
|
|
# In addition added test requirements.
|
|
# Reason: Request from review.
|
|
############################################################
|
|
# REQUIREMENT TEST 1:
|
|
# LOAD TABLE FROM MASTER must work with a forced timestamp.
|
|
#
|
|
# REQUIREMENTi TEST 2:
|
|
#LOAD TABLE FROM MASTER must work with table checksum
|
|
############################################################
|
|
#
|
|
# Test forced timestamp
|
|
#
|
|
-- source include/master-slave.inc
|
|
|
|
# Don't log table creating to the slave as we want to test LOAD TABLE
|
|
SET SQL_LOG_BIN=0,timestamp=200006;
|
|
eval CREATE TABLE t1(t TIMESTAMP NOT NULL,a CHAR(1))ENGINE=MyISAM;
|
|
INSERT INTO t1 ( a) VALUE ('F');
|
|
select unix_timestamp(t) from t1;
|
|
connection slave;
|
|
load table t1 from master;
|
|
select unix_timestamp(t) from t1;
|
|
|
|
# Delete the created table on master and slave
|
|
connection master;
|
|
set SQL_LOG_BIN=1,timestamp=default;
|
|
drop table t1;
|
|
save_master_pos;
|
|
connection slave;
|
|
sync_with_master;
|
|
connection master;
|
|
|
|
#
|
|
# Test copying table with checksum
|
|
#
|
|
|
|
# Don't log table creating to the slave as we want to test LOAD TABLE
|
|
set SQL_LOG_BIN=0;
|
|
|
|
eval CREATE TABLE t1 (a INT NOT NULL) ENGINE=MyISAM MAX_ROWS=4000 CHECKSUM=1;
|
|
INSERT INTO t1 VALUES (1);
|
|
save_master_pos;
|
|
connection slave;
|
|
sync_with_master;
|
|
load table t1 from master;
|
|
check table t1;
|
|
drop table t1;
|
|
connection master;
|
|
drop table t1;
|
|
save_master_pos;
|
|
connection slave;
|
|
sync_with_master;
|
|
|
|
connection master;
|
|
set SQL_LOG_BIN=0;
|
|
create table t1 (word char(20) not null, index(word))ENGINE=MyISAM;
|
|
load data infile '../../std_data/words.dat' into table t1;
|
|
create table t2 (word char(20) not null)ENGINE=MyISAM;
|
|
load data infile '../../std_data/words.dat' into table t2;
|
|
create table t3 (word char(20) not null primary key)ENGINE=MyISAM;
|
|
connection slave;
|
|
load table t1 from master;
|
|
load table t2 from master;
|
|
load table t3 from master;
|
|
check table t1;
|
|
select count(*) from t2;
|
|
select count(*) from t3;
|
|
connection master;
|
|
set SQL_LOG_BIN=1;
|
|
drop table if exists t1,t2,t3;
|
|
save_master_pos;
|
|
connection slave;
|
|
sync_with_master;
|
|
create table t1(n int);
|
|
drop table t1;
|
|
|
|
|
|
|
|
|
|
|
|
# End of 4.1 tests
|