config root man

Current Path : /usr/opt/mysql57/mysql-test/suite/group_replication/r/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //usr/opt/mysql57/mysql-test/suite/group_replication/r/gr_compression_options.result

include/group_replication.inc
Warnings:
Note	####	Sending passwords in plain text without SSL/TLS is extremely insecure.
Note	####	Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information.
[connection server1]
[connection server2]
SET GLOBAL group_replication_compression_threshold= 0;
[connection server1]
SET GLOBAL group_replication_compression_threshold= 0;
[connection server1]
SET GLOBAL group_replication_compression_threshold="AAAA";
ERROR 42000: Incorrect argument type to variable 'group_replication_compression_threshold'
SET GLOBAL group_replication_compression_threshold=4294967297;
ERROR 42000: The value 4294967297 is not within the range of accepted values for the option compression_threshold!
SET GLOBAL group_replication_compression_threshold=-1;
ERROR 42000: The value -1 is not within the range of accepted values for the option compression_threshold!
SET GLOBAL group_replication_compression_threshold=512;
include/assert.inc [Assert that the compression_threshold is set to the default]
SET GLOBAL group_replication_compression_threshold=DEFAULT;
ERROR 42000: Variable 'group_replication_compression_threshold' can't be set to the value of 'DEFAULT'
SET GLOBAL group_replication_compression_threshold=512;
include/start_and_bootstrap_group_replication.inc
[connection server2]
include/start_group_replication.inc
[connection server1]
SET GLOBAL group_replication_compression_threshold=1024;
ERROR HY000: The compression threshold cannot be set while Group Replication is running
include/assert.inc [Assert that the compression_threshold remains unchanged]
CREATE TABLE t1 (c1 INT NOT NULL PRIMARY KEY, c2 LONGBLOB) ENGINE=InnoDB;
INSERT INTO t1 VALUES(1, REPEAT('A', 1024));
INSERT INTO t1 VALUES(2, REPEAT('B', 256.0000));
[connection server2]
include/rpl_sync.inc
include/assert.inc [Assert that the compression_threshold is disabled]
INSERT INTO t1 VALUES(3, REPEAT('C', 1024));
include/rpl_sync.inc
include/diff_tables.inc [server1:test.t1,server2:test.t1]
include/assert_grep.inc [LZ4 compression was active and logged to the error log]
include/assert_grep.inc [LZ4 compression was disabled and logged to the error log]
include/assert_grep.inc [LZ4 compression was disabled always]
DROP TABLE t1;
include/rpl_sync.inc
[connection server1]
include/stop_group_replication.inc
SET GLOBAL group_replication_compression_threshold= SAVED_THRESHOLD;
include/start_group_replication.inc
[connection server2]
include/stop_group_replication.inc
SET GLOBAL group_replication_compression_threshold= SAVED_THRESHOLD;
include/start_group_replication.inc
include/group_replication_end.inc

Man Man