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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
|
# === Purpose ===
#
# This test checks replication with differences in schema between source and replica in two scenarios:
# A) The source has a GIPK and the replica has no GIPK
# B) The replica has a GIPK and the source has no GIPK
# For each scenario there is one case where the other (non-GIPK) columns are the same on source and replica;
# one where replica has an extra column to the right, and one where the source has an extra column to the right.
#
# ==== Requirements ====
#
# R1. If the source contains a GIPK and the replica does not or vice-versa, replication
# should work seamlessly despite acceptable schema differences.
#
# === Implementation ====
#
# Phase 1: Tests with a GIPK only on the source
#
# 1. Enable the generation of GIPKs in the source
# With the binary log temporarily disabled, create tables t1, t2 and t3 with no primary keys
# 2. Create the same tables on the replica
# Table t1 has the same number of columns in the replica
# Table t2 has less columns in the replica
# Table t3 has more columns in the replica
# 3. Insert some values on the tables
# Check they are replicated correctly
# 4. Update and delete tables in all tables
# Check changes are replicated correctly
#
# Phase 2: Tests with a GIPK only on the replica
#
# 5. Enable the generation of GIPKs on replication
# 6. Create tables t4, t5 and t6 without primary keys on the source
# On the replica, drop a column on t5 and add an extra column on t6
# 7. Insert some values on the tables
# Check they are replicated correctly
# 8. Update and delete rows in all tables
# Check changes are replicated correctly
#
# 9. Cleanup
#
# === References ===
#
# Wl#14639: Row-based replication between tables that differ in the existence of a generated invisible primary key
# WL#15419: Make the replica_generate_invisible_primary_key option settable per channel
#
--source include/have_binlog_format_row.inc
# This test needs --binlog-row-image = full
--let $option_name = binlog_row_image
--let $option_value = 'full'
--source include/only_with_option.inc
--source include/master-slave.inc
--echo # Phase 1: Tests with a GIPK only on the source
--echo
--echo ##################################################
--echo # 1. Enable the generation of GIPKs in the source
--echo # With the binary log temporarily disabled, create tables t1, t2 and t3 with no primary keys
--source include/rpl_connection_master.inc
# Set at the session level, so no restore needed for MTR
SET SESSION sql_generate_invisible_primary_key = ON;
--source include/disable_binlog.inc
CREATE TABLE t1(f1 INT, f2 INT);
CREATE TABLE t2(f1 INT, f2 INT);
CREATE TABLE t3(f1 INT, f2 INT);
--source include/restore_binlog.inc
SET SESSION sql_generate_invisible_primary_key = OFF;
--echo
--echo ##################################################
--echo # 2. Create the same tables on the replica
--echo # Table t1 has the same number of columns in the replica
--echo # Table t2 has less columns in the replica
--echo # Table t3 has more columns in the replica
--source include/rpl_connection_slave.inc
CREATE TABLE t1(f1 INT, f2 INT);
CREATE TABLE t2(f1 INT);
CREATE TABLE t3(f1 INT, f2 INT, f3 INT);
--echo
--echo ##################################################
--echo # 3. Insert some values on the tables
--echo # Check they are replicated correctly
--source include/rpl_connection_master.inc
INSERT INTO t1 VALUES (11, 11);
INSERT INTO t1 VALUES (12, 12);
# t2 has an extra row so after the delete we can
# update a row that can affect either the 2 remaining rows in the
# the replica
INSERT INTO t2 VALUES (21, 21);
INSERT INTO t2 VALUES (21, 22);
INSERT INTO t2 VALUES (21, 23);
INSERT INTO t3 VALUES (31, 31);
INSERT INTO t3 VALUES (32, 32);
--source include/sync_slave_sql_with_master.inc
--source include/rpl_connection_slave.inc
--let $row_count= `SELECT COUNT(*) FROM t1;`
--let $assert_text= The table t1 contains the 2 inserted rows
--let $assert_cond= $row_count = 2
--source include/assert.inc
--let $row_count= `SELECT COUNT(*) FROM t2;`
--let $assert_text= The table t2 contains the 3 inserted rows
--let $assert_cond= $row_count = 3
--source include/assert.inc
--let $row_count= `SELECT COUNT(*) FROM t3;`
--let $assert_text= The table t3 contains the 2 inserted rows
--let $assert_cond= $row_count = 2
--source include/assert.inc
--echo
--echo ##################################################
--echo # 4. Update and delete rows in all tables
--echo # Check changes are replicated correctly
--source include/rpl_connection_master.inc
# t1
UPDATE t1 SET t1.f2 = 13 WHERE t1.f1=12;
DELETE FROM t1 WHERE t1.f1=11;
# t2
DELETE FROM t2 WHERE t2.f2=21;
UPDATE t2 SET t2.f2 = 24 WHERE t2.f2=23;
# t3
UPDATE t3 SET t3.f2 = 33 WHERE t3.f1=31;
DELETE FROM t3 WHERE t3.f1=32;
--source include/sync_slave_sql_with_master.inc
--source include/rpl_connection_slave.inc
# t1
--let $row_count= `SELECT COUNT(*) FROM t1;`
--let $assert_text= The table t1 contains 1 row
--let $assert_cond= $row_count = 1
--source include/assert.inc
--let $row_count= `SELECT COUNT(*) FROM t1 WHERE t1.f2 = 13 AND t1.f1 = 12;`
--let $assert_text= The table t1 was updated
--let $assert_cond= $row_count = 1
--source include/assert.inc
# t2
--let $row_count= `SELECT COUNT(*) FROM t2 WHERE t2.f1 = 21`
--let $assert_text= The table t2 contains 2 rows with value 21
--let $assert_cond= $row_count = 2
--source include/assert.inc
# t3
--let $row_count= `SELECT COUNT(*) FROM t3;`
--let $assert_text= The table t3 contains 1 row
--let $assert_cond= $row_count = 1
--source include/assert.inc
--let $row_count= `SELECT COUNT(*) FROM t3 WHERE t3.f2 = 33 AND t3.f1 = 31;`
--let $assert_text= The table t3 was updated
--let $assert_cond= $row_count = 1
--source include/assert.inc
--source include/rpl_connection_master.inc
# t2
# Update a f1 on the source, but since the replica does not contain f2
# this update can update either rows in the replica.
UPDATE t2 SET t2.f1 = 22 WHERE t2.f2=22;
--source include/sync_slave_sql_with_master.inc
--let $row_count= `SELECT COUNT(*) FROM t2 WHERE t2.f1 = 21`
--let $assert_text= The table t2 contains 1 rows with value 21
--let $assert_cond= $row_count = 1
--source include/assert.inc
--let $row_count= `SELECT COUNT(*) FROM t2 WHERE t2.f1 = 22`
--let $assert_text= The table t2 contains 1 rows with value 22
--let $assert_cond= $row_count = 1
--source include/assert.inc
--echo # Phase 2: Tests with a GIPK only on the replica
--echo
--echo ##################################################
--echo # 5. Enable the generation of GIPKs on replication
--source include/rpl_connection_slave.inc
--source include/stop_slave_sql.inc
# Store the default value
--let $_pk_key_check_value = `SELECT require_table_primary_key_check FROM performance_schema.replication_applier_configuration WHERE channel_name=""`
CHANGE REPLICATION SOURCE TO REQUIRE_TABLE_PRIMARY_KEY_CHECK = GENERATE;
--source include/start_slave_sql.inc
--echo
--echo ##################################################
--echo # 6. Create some tables without primary keys on the source
--echo # On the replica, drop a column on t5 and add an extra column on t6
--source include/rpl_connection_master.inc
CREATE TABLE t4(f1 INT, f2 INT);
CREATE TABLE t5(f1 INT, f2 INT);
CREATE TABLE t6(f1 INT, f2 INT);
--source include/sync_slave_sql_with_master.inc
ALTER TABLE t5 DROP COLUMN f2;
ALTER TABLE t6 ADD COLUMN f3 INT AFTER f2;
--echo
--echo ##################################################
--echo # 7. Insert some values on the tables
--echo # Check they are replicated correctly
--source include/rpl_connection_master.inc
INSERT INTO t4 VALUES (41, 41);
INSERT INTO t4 VALUES (42, 42);
# t5 has an extra row so after the delete we can
# update a row that can affect either the 2 remaining rows in the
# the replica
INSERT INTO t5 VALUES (51, 51);
INSERT INTO t5 VALUES (51, 52);
INSERT INTO t5 VALUES (51, 53);
INSERT INTO t6 VALUES (61, 61);
INSERT INTO t6 VALUES (62, 62);
--source include/sync_slave_sql_with_master.inc
--source include/rpl_connection_slave.inc
--let $row_count= `SELECT COUNT(*) FROM t4;`
--let $assert_text= The table t4 contains the 2 inserted rows
--let $assert_cond= $row_count = 2
--source include/assert.inc
--let $row_count= `SELECT COUNT(*) FROM t5;`
--let $assert_text= The table t5 contains the 3 inserted rows
--let $assert_cond= $row_count = 3
--source include/assert.inc
--let $row_count= `SELECT COUNT(*) FROM t6;`
--let $assert_text= The table t6 contains the 2 inserted rows
--let $assert_cond= $row_count = 2
--source include/assert.inc
--echo
--echo ##################################################
--echo # 8. Update and delete rows in all tables
--echo # Check changes are replicated correctly
--source include/rpl_connection_master.inc
# t4
UPDATE t4 SET t4.f2 = 43 WHERE t4.f1=42;
DELETE FROM t4 WHERE t4.f1=41;
# t5
DELETE FROM t5 WHERE t5.f2=51;
UPDATE t5 SET t5.f2 = 54 WHERE t5.f2=53;
# t6
UPDATE t6 SET t6.f2 = 63 WHERE t6.f1=61;
DELETE FROM t6 WHERE t6.f1=62;
--source include/sync_slave_sql_with_master.inc
--source include/rpl_connection_slave.inc
# t4
--let $row_count= `SELECT COUNT(*) FROM t4;`
--let $assert_text= The table t4 contains 1 row
--let $assert_cond= $row_count = 1
--source include/assert.inc
--let $row_count= `SELECT COUNT(*) FROM t4 WHERE t4.f2 = 43 AND t4.f1 = 42;`
--let $assert_text= The table t4 was updated
--let $assert_cond= $row_count = 1
--source include/assert.inc
# t5
--let $row_count= `SELECT COUNT(*) FROM t5 WHERE t5.f1 = 51`
--let $assert_text= The table t5 contains 2 rows with value 51
--let $assert_cond= $row_count = 2
--source include/assert.inc
# t6
--let $row_count= `SELECT COUNT(*) FROM t6;`
--let $assert_text= The table t6 contains 1 row
--let $assert_cond= $row_count = 1
--source include/assert.inc
--let $row_count= `SELECT COUNT(*) FROM t6 WHERE t6.f2 = 63 AND t6.f1 = 61;`
--let $assert_text= The table t6 was updated
--let $assert_cond= $row_count = 1
--source include/assert.inc
--source include/rpl_connection_master.inc
# t5
# Update a f1 on the source, but since the replica does not contain f2
# this update can update either rows in the replica.
UPDATE t5 SET t5.f1 = 52 WHERE t5.f2=52;
--source include/sync_slave_sql_with_master.inc
--let $row_count= `SELECT COUNT(*) FROM t5 WHERE t5.f1 = 51`
--let $assert_text= The table t5 contains 1 rows with value 51
--let $assert_cond= $row_count = 1
--source include/assert.inc
--let $row_count= `SELECT COUNT(*) FROM t5 WHERE t5.f1 = 52`
--let $assert_text= The table t5 contains 1 rows with value 52
--let $assert_cond= $row_count = 1
--source include/assert.inc
--echo
--echo ##################################################
--echo # 9. Cleanup
--source include/stop_slave_sql.inc
--replace_result $_pk_key_check_value PRIMARY_KEY_CHECK_VALUE
--eval CHANGE REPLICATION SOURCE TO REQUIRE_TABLE_PRIMARY_KEY_CHECK = $_pk_key_check_value
--source include/start_slave_sql.inc
--source include/rpl_connection_master.inc
DROP TABLE t1;
DROP TABLE t2;
DROP TABLE t3;
DROP TABLE t4;
DROP TABLE t5;
DROP TABLE t6;
--source include/rpl_end.inc
|