File: rpl_semi_sync.test

package info (click to toggle)
mysql-8.0 8.0.43-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,273,924 kB
  • sloc: cpp: 4,684,605; ansic: 412,450; pascal: 108,398; java: 83,641; perl: 30,221; cs: 27,067; sql: 26,594; sh: 24,181; python: 21,816; yacc: 17,169; php: 11,522; xml: 7,388; javascript: 7,076; makefile: 2,194; lex: 1,075; awk: 670; asm: 520; objc: 183; ruby: 97; lisp: 86
file content (670 lines) | stat: -rw-r--r-- 22,281 bytes parent folder | download
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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
# Usage:
#
#  [--let $rpl_test_optimize_for_static_plugin_config = 1|0]
#  --source suite/rpl/t/rpl_semi_sync.test
#
# Parameters:
#
#  $rpl_test_optimize_for_static_plugin_config
#    When set to `1`, will run the contained test-cases with
#    `replication_optimize_for_static_plugin_config` option enabled.
#

# Want to skip this test from daily Valgrind execution
--source include/no_valgrind_without_big.inc
# Adding big test option for this test.
--source include/big_test.inc

source include/have_semisync_plugin.inc;
source include/master-slave.inc;

let $engine_type= InnoDB;

# Suppress warnings that might be generated during the test
connection master;
disable_query_log;
call mtr.add_suppression("Timeout waiting for reply of binlog");
call mtr.add_suppression("Read semi-sync reply");
call mtr.add_suppression("Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT.");
call mtr.add_suppression("Semi-sync source failed on net_flush.. before waiting for replica reply");
call mtr.add_suppression("Source server does not support semi-sync");
call mtr.add_suppression("Semi-sync replica .* reply");
call mtr.add_suppression("Replica SQL.*Request to stop replica SQL Thread received while applying a group that has non-transactional changes; waiting for completion of the group");
call mtr.add_suppression(".*Got an error reading communication packets.*");
enable_query_log;
--source include/sync_slave_sql_with_master.inc

# After fix of BUG#45848, semi-sync slave should not create any extra
# connections on master, save the count of connections before start
# semi-sync slave for comparison below.
connection master;
let $_connections_normal_slave= query_get_value(SHOW STATUS LIKE 'Threads_connected', Value, 1);

--echo #
--echo # Uninstall semi-sync plugins on master and slave
--echo #
connection slave;
source include/stop_slave.inc;
disable_warnings;
error 0,1305;
UNINSTALL PLUGIN rpl_semi_sync_replica;
error 0,1305;
UNINSTALL PLUGIN rpl_semi_sync_source;
enable_warnings;

connection master;
disable_warnings;
error 0,1305;
UNINSTALL PLUGIN rpl_semi_sync_replica;
error 0,1305;
UNINSTALL PLUGIN rpl_semi_sync_source;
enable_warnings;
--let $rpl_only_running_threads= 1
--let $rpl_no_start_slave= 1
--source include/rpl_reset.inc
--let $rpl_only_running_threads= 0

--echo #
--echo # Main test of semi-sync replication starts here
--echo #

source include/rpl_connection_master.inc;
let $value = query_get_value(show variables like 'rpl_semi_sync_source_enabled', Value, 1);
if ($value == No such row)
{
  disable_query_log;
  eval INSTALL PLUGIN rpl_semi_sync_source SONAME '$SEMISYNC_SOURCE_PLUGIN';
  set global rpl_semi_sync_source_timeout= 60000 /* 60s */;
  set global rpl_semi_sync_source_wait_point= AFTER_COMMIT;
  enable_query_log;
}

echo [ default state of semi-sync on master should be OFF ];
show variables like 'rpl_semi_sync_source_enabled';

echo [ enable semi-sync on master ];
set global rpl_semi_sync_source_enabled = 1;
show variables like 'rpl_semi_sync_source_enabled';

echo [ status of semi-sync on master should be ON even without any semi-sync slaves ];
show status like 'Rpl_semi_sync_source_clients';
show status like 'Rpl_semi_sync_source_status';
show status like 'Rpl_semi_sync_source_yes_tx';

--echo #
--echo # BUG#45672 Semisync repl: ActiveTranx:insert_tranx_node: transaction node allocation failed
--echo # BUG#45673 Semisync reports correct operation even if no slave is connected
--echo #

# BUG#45672 When semi-sync is enabled on master, it would allocate
# transaction node even without semi-sync slave connected, and would
# finally result in transaction node allocation error.
#
# Semi-sync master will pre-allocate 'max_connections' transaction
# nodes, so here we do more than that much transactions to check if it
# will fail or not.
# select @@global.max_connections + 1;
let $i= `select @@global.max_connections + 1`;
disable_query_log;
eval create table t1 (a int) engine=$engine_type;
while ($i)
{
  eval insert into t1 values ($i);
  dec $i;
}
drop table t1;
enable_query_log;

# BUG#45673
echo [ status of semi-sync on master should be OFF ];
show status like 'Rpl_semi_sync_source_clients';
show status like 'Rpl_semi_sync_source_status';
show status like 'Rpl_semi_sync_source_yes_tx';

if ($rpl_test_optimize_for_static_plugin_config == 1)
{
  SET GLOBAL replication_optimize_for_static_plugin_config = 1;
}

# reset master and slave so the following test starts in a clean environment
--let $rpl_only_running_threads= 1
--let $rpl_no_start_slave= 1
--source include/rpl_reset.inc
--let $rpl_only_running_threads= 0

--echo #
--echo # INSTALL PLUGIN semi-sync on slave
--echo #

source include/rpl_connection_slave.inc;
let $value= query_get_value(show variables like 'rpl_semi_sync_replica_enabled', Value, 1);
if ($value == No such row)
{
  disable_query_log;
  eval INSTALL PLUGIN rpl_semi_sync_replica SONAME '$SEMISYNC_REPLICA_PLUGIN';
  enable_query_log;
}

echo [ default state of semi-sync on slave should be OFF ];
show variables like 'rpl_semi_sync_replica_enabled';

echo [ enable semi-sync on slave ];
set global rpl_semi_sync_replica_enabled = 1;
show variables like 'rpl_semi_sync_replica_enabled';
source include/start_slave.inc;

source include/rpl_connection_master.inc;
# NOTE: Rpl_semi_sync_master_client will only be updated when
# semi-sync slave has started binlog dump request
let $status_var= Rpl_semi_sync_source_clients;
let $status_var_value= 1;
source include/wait_for_status_var.inc;

echo [ initial master state after the semi-sync slave connected ];
show status like 'Rpl_semi_sync_source_clients';
show status like 'Rpl_semi_sync_source_status';
show status like 'Rpl_semi_sync_source_no_tx';
show status like 'Rpl_semi_sync_source_yes_tx';

--let $yes_tx_before= query_get_value(SHOW STATUS LIKE 'Rpl_semi_sync_source_yes_tx', Value, 1)

replace_result $engine_type ENGINE_TYPE;
eval create table t1(a int) engine = $engine_type;

# wait for the ack to arrive
--let $yes_tx_after= `SELECT $yes_tx_before + 1`
--let $status_var= Rpl_semi_sync_source_yes_tx
--let $status_var_value= $yes_tx_after
--source include/wait_for_status_var.inc

echo [ master state after CREATE TABLE statement ];
show status like 'Rpl_semi_sync_source_status';
show status like 'Rpl_semi_sync_source_no_tx';
show status like 'Rpl_semi_sync_source_yes_tx';

# After fix of BUG#45848, semi-sync slave should not create any extra
# connections on master.
let $_connections_semisync_replica= query_get_value(SHOW STATUS LIKE 'Threads_connected', Value, 1);
replace_result $_connections_semisync_replica CONNECTIONS_SEMISYNC_SLAVE;
replace_result $_connections_normal_slave CONNECTIONS_NORMAL_SLAVE;
eval select $_connections_semisync_replica - $_connections_normal_slave as 'Should be 0';

--let $yes_tx_before= query_get_value(SHOW STATUS LIKE 'Rpl_semi_sync_source_yes_tx', Value, 1)

let $i=10;
--let $acks_to_wait= 0
echo [ insert records to table ];
disable_query_log;
while ($i)
{
  eval insert into t1 values ($i);
  dec $i;
  inc $acks_to_wait;
}
enable_query_log;

# Wait for acks from slave to avoid test failures on slow platforms.
--let $yes_tx_after= `SELECT $yes_tx_before + $acks_to_wait`
let $status_var= Rpl_semi_sync_source_yes_tx;
let $status_var_value= $yes_tx_after;
let $status_timeout= 2400;
let $status_fail_query= SHOW STATUS LIKE 'Rpl_semi_sync%';
source include/wait_for_status_var.inc;

echo [ master status after inserts ];
show status like 'Rpl_semi_sync_source_status';
show status like 'Rpl_semi_sync_source_no_tx';
show status like 'Rpl_semi_sync_source_yes_tx';

--source include/sync_slave_sql_with_master.inc
echo [ on slave ];

echo [ slave status after replicated inserts ];
show status like 'Rpl_semi_sync_replica_status';

select count(distinct a) from t1;
select min(a) from t1;
select max(a) from t1;

--echo
--echo # BUG#50157
--echo # semi-sync replication crashes when replicating a transaction which
--echo # include 'CREATE TEMPORARY TABLE `MyISAM_t` SELECT * FROM `Innodb_t` ;

source include/rpl_connection_master.inc;
SET SESSION AUTOCOMMIT= 0;
CREATE TABLE t2(c1 INT) ENGINE=innodb;
--source include/sync_slave_sql_with_master.inc

connection master;
BEGIN;
--echo
--echo # Even though it is in a transaction, this statement is binlogged into binlog
--echo # file immediately.
--disable_warnings
CREATE TEMPORARY TABLE t3 SELECT c1 FROM t2 where 1=1;
--enable_warnings
--echo
--echo # These statements will not be binlogged until the transaction is committed
INSERT INTO t2 VALUES(11);
INSERT INTO t2 VALUES(22);
COMMIT;

DROP TABLE t2, t3;
SET SESSION AUTOCOMMIT= 1;

# The temporary table above will be binlogged in statement mode only, resulting
# in different Rpl_semi_sync_source_yes_tx values in statement vs row/mixed. Reset it.
FLUSH STATUS;

--source include/sync_slave_sql_with_master.inc


--echo #
--echo # Test semi-sync master will switch OFF after one transaction
--echo # timeout waiting for replica reply.
--echo #
connection slave;
source include/stop_slave.inc;

source include/rpl_connection_master.inc;
# Kill the dump thread(s) on master for previous slave connection
source include/stop_dump_threads.inc;
# Rpl_semi_sync_source_clients should be 0, once the dump thread(s) have exited.
let $status_var= Rpl_semi_sync_source_clients;
let $status_var_value= 0;
source include/wait_for_status_var.inc;

# The first semi-sync check should be on because after slave stop,
# there are no transactions on the master.
echo [ master status should be ON ];
show status like 'Rpl_semi_sync_source_status';
show status like 'Rpl_semi_sync_source_no_tx';
show status like 'Rpl_semi_sync_source_yes_tx';
show status like 'Rpl_semi_sync_source_clients';

echo [ semi-sync replication of these transactions will fail ];
insert into t1 values (500);

# Wait for the semi-sync replication of this transaction to timeout
let $status_var= Rpl_semi_sync_source_status;
let $status_var_value= OFF;
source include/wait_for_status_var.inc;

# The second semi-sync check should be off because one transaction
# times out during waiting.
echo [ master status should be OFF ];
show status like 'Rpl_semi_sync_source_status';
show status like 'Rpl_semi_sync_source_no_tx';
show status like 'Rpl_semi_sync_source_yes_tx';

# Semi-sync status on master is now OFF, so all these transactions
# will be replicated asynchronously.
let $i=10;
disable_query_log;
while ($i)
{
  eval delete from t1 where a=$i;
  dec $i;
}
enable_query_log;

insert into t1 values (100);

echo [ master status should be OFF ];
show status like 'Rpl_semi_sync_source_status';
show status like 'Rpl_semi_sync_source_no_tx';
show status like 'Rpl_semi_sync_source_yes_tx';

--echo #
--echo # Test semi-sync status on master will be ON again when slave catches up
--echo #

# Save the master position for later use.
save_master_pos;

source include/rpl_connection_slave.inc;
echo [ slave status should be OFF ];
show status like 'Rpl_semi_sync_replica_status';
source include/start_slave.inc;
sync_with_master;

echo [ slave status should be ON ];
show status like 'Rpl_semi_sync_replica_status';

select count(distinct a) from t1;
select min(a) from t1;
select max(a) from t1;

source include/rpl_connection_master.inc;
# Wait until master semi-sync status is on again after slave catches up
# to avoid test failures on slow platforms.
let $status_var= Rpl_semi_sync_source_status;
let $status_var_value= ON;
source include/wait_for_status_var.inc;

echo [ master status should be ON again after slave catches up ];
show status like 'Rpl_semi_sync_source_status';
show status like 'Rpl_semi_sync_source_no_tx';
show status like 'Rpl_semi_sync_source_yes_tx';
show status like 'Rpl_semi_sync_source_clients';

--echo #
--echo # Test disable/enable master semi-sync on the fly.
--echo #

drop table t1;
--source include/sync_slave_sql_with_master.inc
echo [ on slave ];

source include/stop_slave.inc;

--echo #
--echo # Flush status
--echo #
connection master;
echo [ Semi-sync master status variables before FLUSH STATUS ];
SHOW STATUS LIKE 'Rpl_semi_sync_source_no_tx';
SHOW STATUS LIKE 'Rpl_semi_sync_source_yes_tx';
# Do not write the FLUSH STATUS to binlog, to make sure we'll get a
# clean status after this.
FLUSH NO_WRITE_TO_BINLOG STATUS;
echo [ Semi-sync master status variables after FLUSH STATUS ];
SHOW STATUS LIKE 'Rpl_semi_sync_source_no_tx';
SHOW STATUS LIKE 'Rpl_semi_sync_source_yes_tx';

source include/rpl_connection_master.inc;
source include/show_master_logs.inc;
show variables like 'rpl_semi_sync_source_enabled';

echo [ disable semi-sync on the fly ];
set global rpl_semi_sync_source_enabled=0;
show variables like 'rpl_semi_sync_source_enabled';
show status like 'Rpl_semi_sync_source_status';

echo [ enable semi-sync on the fly ];
set global rpl_semi_sync_source_enabled=1;
show variables like 'rpl_semi_sync_source_enabled';
show status like 'Rpl_semi_sync_source_status';

--echo #
--echo # Test RESET MASTER/SLAVE
--echo #

source include/rpl_connection_slave.inc;
source include/start_slave.inc;

source include/rpl_connection_master.inc;
replace_result $engine_type ENGINE_TYPE;
eval create table t1 (a int) engine = $engine_type;
drop table t1;

--source include/sync_slave_sql_with_master.inc
--replace_column 2 #
show status like 'Rpl_relay%';

echo [ test reset master ];
source include/rpl_connection_master.inc;

reset master;

show status like 'Rpl_semi_sync_source_status';
show status like 'Rpl_semi_sync_source_no_tx';
show status like 'Rpl_semi_sync_source_yes_tx';

source include/rpl_connection_slave.inc;
source include/stop_slave.inc;
reset slave;
reset master;

source include/rpl_connection_master.inc;
# Kill the dump thread(s) on master for previous slave connection
source include/stop_dump_threads.inc;
# Rpl_semi_sync_source_clients should be 0, once the dump thread(s) have exited.
let $status_var= Rpl_semi_sync_source_clients;
let $status_var_value= 0;
source include/wait_for_status_var.inc;

connection slave;
source include/start_slave.inc;

source include/rpl_connection_master.inc;
# Wait for dump thread to start, Rpl_semi_sync_source_clients should be
# 1 after dump thread started.
let $status_var= Rpl_semi_sync_source_clients;
let $status_var_value= 1;
source include/wait_for_status_var.inc;

replace_result $engine_type ENGINE_TYPE;
eval create table t1 (a int) engine = $engine_type;
insert into t1 values (1);
insert into t1 values (2), (3);

--source include/sync_slave_sql_with_master.inc
echo [ on slave ];
select * from t1;

source include/rpl_connection_master.inc;
# Wait until master semi-sync status is on again after slave catches up
# to avoid test failures on slow platforms.
let $status_var= Rpl_semi_sync_source_status;
let $status_var_value= ON;
source include/wait_for_status_var.inc;

echo [ master semi-sync status should be ON ];
show status like 'Rpl_semi_sync_source_status';
show status like 'Rpl_semi_sync_source_no_tx';
show status like 'Rpl_semi_sync_source_yes_tx';


--echo #
--echo # Start semi-sync replication without SUPER privilege
--echo #
--source include/rpl_reset.inc

source include/rpl_connection_master.inc;
# Kill the dump thread on master for previous slave connection
source include/stop_dump_threads.inc;
# Rpl_semi_sync_source_clients should be 0, once dump thread(s) have exited
let $status_var= Rpl_semi_sync_source_clients;
let $status_var_value= 0;
source include/wait_for_status_var.inc;

# Do not binlog the following statement because it will generate
# different events for ROW and STATEMENT format
set sql_log_bin=0;
create user rpl@127.0.0.1 identified by 'rpl';
grant replication slave on *.* to rpl@127.0.0.1;
flush privileges;
set sql_log_bin=1;
# Prove of bug#77732 fixes:
# Created user's privileges - REPLICATION and SLAVE -
# alone must suffice to successful connecting even with show handler
# not compatible to 5.6.

source include/rpl_connection_slave.inc;
create user rpl@127.0.0.1 identified by 'rpl';
grant replication slave on *.* to rpl@127.0.0.1;
flush privileges;
--replace_column 2 ####
CHANGE REPLICATION SOURCE to SOURCE_USER='rpl',SOURCE_PASSWORD='rpl', GET_SOURCE_PUBLIC_KEY=1;
source include/start_slave.inc;
show status like 'Rpl_semi_sync_replica_status';
source include/rpl_connection_master.inc;

# bug#77732 related: reconnecting to the master while the show handler
# is compatible with 5.6
--source include/rpl_connection_slave.inc
source include/stop_slave.inc;

--source include/rpl_connection_master.inc
# Added for Bug#19372027: rpl_semi_sync fails sporadically on trunk
# To ensure that master knows that the slave is stopped
Insert into t1 values (4);
# wait for semi sync binlog dump thread to stop
let $status_var= Rpl_semi_sync_source_clients;
let $status_var_value= 0;
source include/wait_for_status_var.inc;
show status like 'Rpl_semi_sync_source_status';
show status like 'Rpl_semi_sync_source_clients';

source include/rpl_connection_slave.inc;
source include/start_slave.inc;
show status like 'Rpl_semi_sync_replica_status';

--source include/rpl_connection_master.inc
# bug#77732 cleanup
# Added for Bug#19372027:rpl_semi_sync fails sporadically on trunk
let $status_var= Rpl_semi_sync_source_status;
let $status_var_value= ON;
source include/wait_for_status_var.inc;
show status like 'Rpl_semi_sync_source_status';

# Wait for the semi-sync binlog dump thread to start
let $status_var= Rpl_semi_sync_source_clients;
let $status_var_value= 1;
source include/wait_for_status_var.inc;
echo [ master semi-sync should be ON ];
show status like 'Rpl_semi_sync_source_clients';
show status like 'Rpl_semi_sync_source_no_tx';
show status like 'Rpl_semi_sync_source_yes_tx';
insert into t1 values (5);
insert into t1 values (6);

# Wait for acks from slave to avoid test failures on slow platforms.
let $status_var= Rpl_semi_sync_source_yes_tx;
let $status_var_value= 2;
source include/wait_for_status_var.inc;

echo [ master semi-sync should be ON ];
show status like 'Rpl_semi_sync_source_clients';
show status like 'Rpl_semi_sync_source_status';
show status like 'Rpl_semi_sync_source_no_tx';
show status like 'Rpl_semi_sync_source_yes_tx';

# Bug#31327337: SUBSYSTEM NAME FOR SEMISYNC ERRORS IS [SERVER] - pt2
select subsystem, error_code
  from performance_schema.error_log
 where error_code="MY-011170" limit 1;

--echo #
--echo # Test semi-sync slave connect to non-semi-sync master
--echo #

# Disable semi-sync on master
--source include/sync_slave_sql_with_master.inc
echo [ on slave ];
source include/stop_slave.inc;
SHOW STATUS LIKE 'Rpl_semi_sync_replica_status';

source include/rpl_connection_master.inc;
# Kill the dump thread(s) on master for previous slave connection
source include/stop_dump_threads.inc;
# Rpl_semi_sync_source_clients should be 0, once dump thread(s) have exited
let $status_var= Rpl_semi_sync_source_clients;
let $status_var_value= 0;
source include/wait_for_status_var.inc;

echo [ Semi-sync status on master should be ON ];
show status like 'Rpl_semi_sync_source_clients';
show status like 'Rpl_semi_sync_source_status';
set global rpl_semi_sync_source_enabled= 0;

source include/rpl_connection_slave.inc;
SHOW VARIABLES LIKE 'rpl_semi_sync_replica_enabled';
source include/start_slave.inc;

source include/rpl_connection_master.inc;
insert into t1 values (8);
let $status_var= Rpl_semi_sync_source_clients;
let $status_var_value= 1;
source include/wait_for_status_var.inc;
echo [ master semi-sync clients should be 1, status should be OFF ];
show status like 'Rpl_semi_sync_source_clients';
show status like 'Rpl_semi_sync_source_status';
--source include/sync_slave_sql_with_master.inc
echo [ on slave ];
show status like 'Rpl_semi_sync_replica_status';

# Uninstall semi-sync plugin on master
connection slave;
source include/stop_slave.inc;
connection master;
echo [ on master ];
--source include/stop_dump_threads.inc
if ($rpl_test_optimize_for_static_plugin_config == 1)
{
  SET GLOBAL replication_optimize_for_static_plugin_config = 0;
}
UNINSTALL PLUGIN rpl_semi_sync_source;
enable_query_log;
SHOW VARIABLES LIKE 'rpl_semi_sync_source_enabled';

source include/rpl_connection_slave.inc;
SHOW VARIABLES LIKE 'rpl_semi_sync_replica_enabled';
source include/start_slave.inc;

source include/rpl_connection_master.inc;
insert into t1 values (10);
--source include/sync_slave_sql_with_master.inc
echo [ on slave ];
SHOW STATUS LIKE 'Rpl_semi_sync_replica_status';

--echo #
--echo # Test non-semi-sync slave connect to semi-sync master
--echo #

connection master;
replace_result $SEMISYNC_SOURCE_PLUGIN SEMISYNC_SOURCE_PLUGIN;
eval INSTALL PLUGIN rpl_semi_sync_source SONAME '$SEMISYNC_SOURCE_PLUGIN';
if ($rpl_test_optimize_for_static_plugin_config == 1)
{
  SET GLOBAL replication_optimize_for_static_plugin_config = 1;
}
set global rpl_semi_sync_source_timeout= 60000; /* 60s */
set global rpl_semi_sync_source_enabled= 1;

source include/rpl_connection_slave.inc;
source include/stop_slave.inc;
SHOW STATUS LIKE 'Rpl_semi_sync_replica_status';

echo [ uninstall semi-sync slave plugin ];
UNINSTALL PLUGIN rpl_semi_sync_replica;
SHOW VARIABLES LIKE 'rpl_semi_sync_replica_enabled';
source include/start_slave.inc;
SHOW STATUS LIKE 'Rpl_semi_sync_replica_status';
source include/stop_slave.inc;

echo [ reinstall semi-sync slave plugin and disable semi-sync ];
replace_result $SEMISYNC_REPLICA_PLUGIN SEMISYNC_REPLICA_PLUGIN;
eval INSTALL PLUGIN rpl_semi_sync_replica SONAME '$SEMISYNC_REPLICA_PLUGIN';
set global rpl_semi_sync_replica_enabled= 0;
SHOW VARIABLES LIKE 'rpl_semi_sync_replica_enabled';
SHOW STATUS LIKE 'Rpl_semi_sync_replica_status';
source include/start_slave.inc;
SHOW STATUS LIKE 'Rpl_semi_sync_replica_status';

--echo #
--echo # Clean up
--echo #
if ($rpl_test_optimize_for_static_plugin_config == 1)
{
  connection master;
  SET GLOBAL replication_optimize_for_static_plugin_config = 0;
}
--source include/uninstall_semisync.inc

connection slave;
--source include/stop_slave.inc
--replace_column 2 ####
CHANGE REPLICATION SOURCE to SOURCE_USER='root',SOURCE_PASSWORD='', GET_SOURCE_PUBLIC_KEY=0;
source include/start_slave.inc;

connection master;
drop table t1;
--source include/sync_slave_sql_with_master.inc

connection master;
drop user rpl@127.0.0.1;
flush privileges;
--source include/rpl_end.inc