File: gr_flush_applier_channel.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 (57 lines) | stat: -rw-r--r-- 2,135 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
################################################################################
# Check that it is not possible to flush Group Replication applier channel
# through FLUSH LOG command.
#
# Test:
# 0. The test requires two servers: M1 and M2.
# 1. Setup a new group with two members.
# 2. Check there are two relay logs of applier channel before the attempt to
#    flush it.
# 3. Try flush relay logs on applier channel with member ONLINE. It must
#    SUCCEED.
# 4. Check there is a new relay log of applier channel after the attempt
#    to flush it.
# 5. Try flush relay logs on applier channel with member OFFLINE. It must
#    SUCCEED.
# 6. Check there is a new relay log of applier channel after the attempt
#    to flush it.
################################################################################

--source include/have_group_replication_plugin.inc
--echo #
--echo # Setup a new group with two members.
--echo #
--source include/group_replication.inc

--echo #
--echo # There are two relay logs of Group Replication applier
--echo # channel before the attempt to flush it.
--echo #
--file_exists $MYSQLTEST_VARDIR/mysqld.2/data/server-relay-log-group_replication_applier.000001
--file_exists $MYSQLTEST_VARDIR/mysqld.2/data/server-relay-log-group_replication_applier.000002

--echo #
--echo # Try flush applier channel with Group Replication working.
--echo #
--connection server2
FLUSH RELAY LOGS FOR CHANNEL "group_replication_applier";

--echo #
--echo # There is a new relay log of Group Replication applier channel after
--echo # trying to flush it.
--echo #
--file_exists $MYSQLTEST_VARDIR/mysqld.2/data/server-relay-log-group_replication_applier.000003

--echo #
--echo # Try flush applier channel with Group Replication stopped.
--echo #
--source include/stop_group_replication.inc
FLUSH LOCAL RELAY LOGS FOR CHANNEL "group_replication_applier";

--echo #
--echo # There is a new relay log of Group Replication applier channel after
--echo # trying to flush it.
--echo #
--file_exists $MYSQLTEST_VARDIR/mysqld.2/data/server-relay-log-group_replication_applier.000004

--source include/group_replication_end.inc