You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

86 lines
3.0 KiB

  1. #########################################
  2. # Author: Serge Kozlov skozlov@mysql.com
  3. # Date: 07/10/2006
  4. # Purpose: testing the replication in mixed mode
  5. # Requirements: define binlog format for mysqld as in example below:
  6. # ./mysql-test-run.pl --mysqld=--binlog-format=mixed
  7. #########################################
  8. --source include/master-slave.inc
  9. # Check MIXED on both master and slave
  10. connection master;
  11. --echo ==========MASTER==========
  12. --source suite/rpl/include/rpl_mixed_show_binlog_format.inc
  13. connection slave;
  14. --echo ==========SLAVE===========
  15. --source suite/rpl/include/rpl_mixed_show_binlog_format.inc
  16. connection master;
  17. # DDL for databases
  18. --echo
  19. --echo ******************** DDL for database ********************
  20. --disable_warnings
  21. DROP DATABASE IF EXISTS test_rpl;
  22. DROP DATABASE IF EXISTS test_rpl_1;
  23. --enable_warnings
  24. CREATE DATABASE test_rpl_1 CHARACTER SET utf8 COLLATE utf8_general_ci;
  25. ALTER DATABASE test_rpl_1 CHARACTER SET latin1 COLLATE latin1_general_ci;
  26. DROP DATABASE test_rpl_1;
  27. CREATE DATABASE test_rpl CHARACTER SET utf8 COLLATE utf8_general_ci;
  28. ALTER DATABASE test_rpl CHARACTER SET latin1 COLLATE latin1_swedish_ci;
  29. --source suite/rpl/include/rpl_mixed_check_db.inc
  30. USE test_rpl;
  31. # DDL for tables
  32. --echo
  33. --echo ******************** DDL for tables ********************
  34. eval CREATE TABLE t0 (a int auto_increment not null, c int not null, PRIMARY KEY(a), KEY index2 (c)) ENGINE=$engine_type;
  35. ALTER TABLE t0 DROP INDEX index2;
  36. ALTER TABLE t0 ADD COLUMN b char(254);
  37. ALTER TABLE t0 ADD INDEX index1 (b);
  38. ALTER TABLE t0 DROP COLUMN c;
  39. RENAME TABLE t0 TO t1;
  40. CREATE TABLE t2 LIKE t1;
  41. --source suite/rpl/include/rpl_mixed_check_table.inc
  42. # DDL for logfiles
  43. # skipped
  44. # DDL for tablespaces
  45. # skipped
  46. # DDL for indexes
  47. --echo
  48. --echo ******************** DDL for indexes ********************
  49. ALTER TABLE t2 ADD COLUMN d datetime;
  50. CREATE INDEX index2 on t2 (d);
  51. CREATE INDEX index3 on t2 (a, d);
  52. --source suite/rpl/include/rpl_mixed_check_table.inc
  53. ALTER TABLE t2 DROP COLUMN d;
  54. # BINLOG EVENTS
  55. --echo
  56. --echo
  57. --echo ******************** SHOW BINLOG EVENTS ********************
  58. --replace_column 2 # 5 #
  59. --replace_regex /Server ver: .+/Server ver: #/ /table_id: [0-9]+/table_id: #/
  60. show binlog events from 1;
  61. sync_slave_with_master;
  62. # as we're using UUID we don't SELECT but use "diff" like in rpl_row_UUID
  63. --exec $MYSQL_DUMP --compact --order-by-primary --skip-extended-insert --no-create-info test_rpl > $MYSQLTEST_VARDIR/tmp/rpl_switch_stm_row_mixed_master.sql
  64. --exec $MYSQL_DUMP_SLAVE --compact --order-by-primary --skip-extended-insert --no-create-info test_rpl > $MYSQLTEST_VARDIR/tmp/rpl_switch_stm_row_mixed_slave.sql
  65. connection master;
  66. drop database test_rpl;
  67. sync_slave_with_master;
  68. # Let's compare. Note: If they match test will pass, if they do not match
  69. # the test will show that the diff statement failed and not reject file
  70. # will be created. You will need to go to the mysql-test dir and diff
  71. # the files your self to see what is not matching
  72. --diff_files $MYSQLTEST_VARDIR/tmp/rpl_switch_stm_row_mixed_master.sql $MYSQLTEST_VARDIR/tmp/rpl_switch_stm_row_mixed_slave.sql