polardbxengine/mysql-test/suite/perfschema/t/idx_compare_replication_con...

39 lines
944 B
Plaintext

#
# Verify that query results are the same with and without indexes.
#
--source include/master-slave.inc
# --source include/have_binlog_format_mixed.inc
--connection slave
--source include/stop_slave.inc
SET @old_slave_parallel_workers= @@global.slave_parallel_workers;
SET GLOBAL slave_parallel_workers= 4;
--source include/start_slave.inc
# Debug
# select * from performance_schema.replication_connection_configuration;
--source ../include/idx_compare_setup_index_test.inc
SET @pfs_columns = "*";
let $table = "replication_connection_configuration";
let $key_group = 18;
let $target_channel_name = '';
--echo TABLE: $table
--echo INDEXES: PK (CHANNEL_NAME)
--source ../include/idx_compare_load.inc
--source ../include/idx_compare_cleanup_index_test.inc
--connection slave
--source include/stop_slave.inc
SET GLOBAL slave_parallel_workers= @old_slave_parallel_workers;
--source include/start_slave.inc
--source include/rpl_end.inc