diff options
author | monty@mysql.com <> | 2003-12-16 13:20:17 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2003-12-16 13:20:17 +0200 |
commit | 56f0abf7bb88c98adc4e65de032f63f40498b834 (patch) | |
tree | 7caf9e264c5defe6995ae178452a829c4064f97c /mysql-test/t/rpl_rotate_logs.test | |
parent | 217226f9afcefb7918ce0aee5ac920dfdf73edf0 (diff) | |
download | mariadb-git-56f0abf7bb88c98adc4e65de032f63f40498b834.tar.gz |
Portability fixes (mostly test suite)
Make ENGINE= an alias for TYPE= (Compabiltiy with 4.1)
Fix when using symlinked data files and realpath() is not working
Diffstat (limited to 'mysql-test/t/rpl_rotate_logs.test')
-rw-r--r-- | mysql-test/t/rpl_rotate_logs.test | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/mysql-test/t/rpl_rotate_logs.test b/mysql-test/t/rpl_rotate_logs.test index c4dc5de38da..70366fc1749 100644 --- a/mysql-test/t/rpl_rotate_logs.test +++ b/mysql-test/t/rpl_rotate_logs.test @@ -50,11 +50,11 @@ save_master_pos; connection slave; sync_with_master; --replace_result 3306 MASTER_PORT 9306 MASTER_PORT 3334 MASTER_PORT 3336 MASTER_PORT +--replace_column 18 # show slave status; select * from t1; connection master; flush logs; -drop table if exists t2; create table t2(m int not null auto_increment primary key); insert into t2 values (34),(67),(123); flush logs; @@ -102,6 +102,7 @@ save_master_pos; connection slave; sync_with_master; --replace_result 3306 MASTER_PORT 9306 MASTER_PORT 3334 MASTER_PORT 3336 MASTER_PORT +--replace_column 18 # show slave status; select * from t2; @@ -113,7 +114,7 @@ connection master; create temporary table temp_table (a char(80) not null); insert into temp_table values ("testing temporary tables part 2"); let $1=100; -drop table if exists t3; + create table t3 (n int); disable_query_log; while ($1) @@ -123,17 +124,17 @@ while ($1) dec $1; } enable_query_log; +select count(*) from t3 where n >= 4; create table t4 select * from temp_table; show master logs; show master status; save_master_pos; connection slave; -#slave stop; -#slave start; sync_with_master; select * from t4; --replace_result 3306 MASTER_PORT 9306 MASTER_PORT 3334 MASTER_PORT 3336 MASTER_PORT +--replace_column 18 # show slave status; # because of concurrent insert, the table may not be up to date # if we do not lock |