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_flow_control_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]
SET @group_replication_flow_control_mode_save= @@GLOBAL.group_replication_flow_control_mode;
SET @group_replication_flow_control_certifier_threshold_save= @@GLOBAL.group_replication_flow_control_certifier_threshold;
SET @group_replication_flow_control_applier_threshold_save= @@GLOBAL.group_replication_flow_control_applier_threshold;

############################################################
# 1. Test group_replication_flow_control_mode option.
SET GLOBAL group_replication_flow_control_mode= "";
ERROR 42000: Variable 'group_replication_flow_control_mode' can't be set to the value of ''
SET GLOBAL group_replication_flow_control_mode= "XXX";
ERROR 42000: Variable 'group_replication_flow_control_mode' can't be set to the value of 'XXX'
SET GLOBAL group_replication_flow_control_mode= -1;
ERROR 42000: Variable 'group_replication_flow_control_mode' can't be set to the value of '-1'
SET GLOBAL group_replication_flow_control_mode= 2;
ERROR 42000: Variable 'group_replication_flow_control_mode' can't be set to the value of '2'
SET GLOBAL group_replication_flow_control_mode= DISABLED;
include/assert.inc [group_replication_flow_control_mode is correct]
SET GLOBAL group_replication_flow_control_mode= QUOTA;
include/assert.inc [group_replication_flow_control_mode is correct]
SET GLOBAL group_replication_flow_control_mode= 0;
include/assert.inc [group_replication_flow_control_mode is correct]
SET GLOBAL group_replication_flow_control_mode= 1;
include/assert.inc [group_replication_flow_control_mode is correct]

############################################################
# 2. Test group_replication_flow_control_certifier_threshold
#    option.
SET GLOBAL group_replication_flow_control_certifier_threshold= "";
ERROR 42000: Incorrect argument type to variable 'group_replication_flow_control_certifier_threshold'
SET GLOBAL group_replication_flow_control_certifier_threshold= -1;
Warnings:
Warning	1292	Truncated incorrect group_replication_flow_control_c value: '-1'
include/assert.inc [group_replication_flow_control_certifier_threshold is truncated]
SET GLOBAL group_replication_flow_control_certifier_threshold= 2147483648;
Warnings:
Warning	1292	Truncated incorrect group_replication_flow_control_c value: '2147483648'
include/assert.inc [group_replication_flow_control_certifier_threshold is truncated]
SET GLOBAL group_replication_flow_control_certifier_threshold= 1;
include/assert.inc [group_replication_flow_control_certifier_threshold is correct]
SET GLOBAL group_replication_flow_control_certifier_threshold= 2147483647;
include/assert.inc [group_replication_flow_control_certifier_threshold is correct]

############################################################
# 3. Test group_replication_flow_control_applier_threshold
#    option.
SET GLOBAL group_replication_flow_control_applier_threshold= "";
ERROR 42000: Incorrect argument type to variable 'group_replication_flow_control_applier_threshold'
SET GLOBAL group_replication_flow_control_applier_threshold= -1;
Warnings:
Warning	1292	Truncated incorrect group_replication_flow_control_a value: '-1'
include/assert.inc [group_replication_flow_control_applier_threshold is truncated]
SET GLOBAL group_replication_flow_control_applier_threshold= 2147483648;
Warnings:
Warning	1292	Truncated incorrect group_replication_flow_control_a value: '2147483648'
include/assert.inc [group_replication_flow_control_applier_threshold is truncated]
SET GLOBAL group_replication_flow_control_applier_threshold= 1;
include/assert.inc [group_replication_flow_control_applier_threshold is correct]
SET GLOBAL group_replication_flow_control_applier_threshold= 2147483647;
include/assert.inc [group_replication_flow_control_applier_threshold is correct]

############################################################
# 4. Change all group_replication_flow_control options while
#    Group Replication is running.
include/start_and_bootstrap_group_replication.inc
SET GLOBAL group_replication_flow_control_mode= DISABLED;
include/assert.inc [group_replication_flow_control_mode is correct]
SET GLOBAL group_replication_flow_control_mode= QUOTA;
include/assert.inc [group_replication_flow_control_mode is correct]
SET GLOBAL group_replication_flow_control_certifier_threshold= 1000;
include/assert.inc [group_replication_flow_control_certifier_threshold is correct]
SET GLOBAL group_replication_flow_control_applier_threshold= 1000;
include/assert.inc [group_replication_flow_control_applier_threshold is correct]

############################################################
# 5. Clean up.
SET GLOBAL group_replication_flow_control_mode= @group_replication_flow_control_mode_save;
SET GLOBAL group_replication_flow_control_certifier_threshold= @group_replication_flow_control_certifier_threshold_save;
SET GLOBAL group_replication_flow_control_applier_threshold= @group_replication_flow_control_applier_threshold_save;
include/group_replication_end.inc

Man Man