1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

MDEV-16437: merge 5.7 P_S replication instrumentation and tables

Merge 'replication_applier_configuration' table.

This table captures SQL_THREAD configuration parameters.
This commit is contained in:
Sujatha
2021-04-16 09:05:39 +05:30
parent 70642871bc
commit 767648cc2b
6 changed files with 141 additions and 24 deletions

View File

@@ -0,0 +1,35 @@
include/master-slave.inc
[connection master]
include/assert.inc [On master, the table should return an empty set.]
connection slave;
# Verify that SELECT works and produces an output similar to
# the corresponding field in SHOW SLAVE STATUS(SSS) in all scenarios.
# Verify that output is same as SSS on a fresh slave.
include/assert.inc [Value returned by SSS and PS table for Desired_Delay should be same.]
# Verify that the value of this field is correct after STOP SLAVE.
include/stop_slave.inc
include/assert.inc [Value returned by SSS and PS table for Desired_Delay should be same.]
# Verify that, when desired delay is set, the value is shown corectly.
change master to master_delay= 2;
include/start_slave.inc
include/assert.inc [Value returned by SSS and PS table for Desired_Delay should be same.]
# Verify that the value is preserved after STOP SLAVE.
include/stop_slave.inc
include/assert.inc [Value returned by SSS and PS table for Desired_Delay should be same.]
# Verify that, when desired delay is reset, the value is shown corectly.
change master to master_delay= 0;
include/start_slave.inc
include/assert.inc [Value returned by SSS and PS table for Desired_Delay should be same.]
include/rpl_end.inc

View File

@@ -0,0 +1,97 @@
# ==== Purpose ====
#
# This test script serves as the functionality testing for the table
# performance_schema.replication_applier_configuration. Test for ddl and dml
# operations is a part of the perfschema suite. The ddl/dml tests are named:
# 1) ddl_replication_applier_configuration.test and
# 2) dml_replication_applier_configuration.test.
#
# The follwing scenarios are tested in this script:
#
# - Verify that output is same as SSS on a fresh slave.
# - Verify that the value of this field is correct after STOP SLAVE.
# - Verify that, when desired delay is set, the value is shown corectly.
# - Verify that the value is preserved after STOP SLAVE.
# - Verify that, when desired delay is reset, the value is shown corectly.
#
# ==== Related Worklog ====
#
# MDEV-16437: merge 5.7 P_S replication instrumentation and tables
#
source include/have_perfschema.inc;
source include/have_binlog_format_mixed.inc;
source include/master-slave.inc;
let $assert_text= On master, the table should return an empty set.;
let $assert_cond= count(*) = 0 from performance_schema.replication_applier_configuration;
source include/assert.inc;
--connection slave
--echo
--echo # Verify that SELECT works and produces an output similar to
--echo # the corresponding field in SHOW SLAVE STATUS(SSS) in all scenarios.
--echo
--echo
--echo # Verify that output is same as SSS on a fresh slave.
--echo
let $sss_value= query_get_value(SHOW SLAVE STATUS, SQL_Delay, 1);
let $ps_value= query_get_value(select Desired_Delay from performance_schema.replication_applier_configuration, Desired_Delay, 1);
let $assert_text= Value returned by SSS and PS table for Desired_Delay should be same.;
let $assert_cond= "$sss_value" = "$ps_value";
source include/assert.inc;
--echo
--echo # Verify that the value of this field is correct after STOP SLAVE.
--echo
source include/stop_slave.inc;
let $sss_value= query_get_value(SHOW SLAVE STATUS, SQL_Delay, 1);
let $ps_value= query_get_value(select Desired_Delay from performance_schema.replication_applier_configuration, Desired_Delay, 1);
let $assert_text= Value returned by SSS and PS table for Desired_Delay should be same.;
let $assert_cond= "$sss_value" = "$ps_value";
source include/assert.inc;
--echo
--echo # Verify that, when desired delay is set, the value is shown corectly.
--echo
eval change master to master_delay= 2;
source include/start_slave.inc;
let $sss_value= query_get_value(SHOW SLAVE STATUS, SQL_Delay, 1);
let $ps_value= query_get_value(select Desired_Delay from performance_schema.replication_applier_configuration, Desired_Delay, 1);
let $assert_text= Value returned by SSS and PS table for Desired_Delay should be same.;
let $assert_cond= "$sss_value" = "$ps_value";
source include/assert.inc;
--echo
--echo # Verify that the value is preserved after STOP SLAVE.
--echo
source include/stop_slave.inc;
let $ss_value= query_get_value(SHOW SLAVE STATUS, SQL_Delay, 1);
let $ps_value= query_get_value(select Desired_Delay from performance_schema.replication_applier_configuration, Desired_Delay, 1);
let $assert_text= Value returned by SSS and PS table for Desired_Delay should be same.;
let $assert_cond= "$sss_value" = "$ps_value";
source include/assert.inc;
--echo
--echo # Verify that, when desired delay is reset, the value is shown corectly.
--echo
eval change master to master_delay= 0;
source include/start_slave.inc;
let $sss_value= query_get_value(SHOW SLAVE STATUS, SQL_Delay, 1);
let $ps_value= query_get_value(select Desired_Delay from performance_schema.replication_applier_configuration, Desired_Delay, 1);
let $assert_text= Value returned by SSS and PS table for Desired_Delay should be same.;
let $assert_cond= "$sss_value" = "$ps_value";
source include/assert.inc;
source include/rpl_end.inc;