29 lines
617 B
Plaintext
29 lines
617 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
|
|
|
|
# Debug
|
|
select * from performance_schema.replication_applier_configuration;
|
|
|
|
set @pfs_columns = "*";
|
|
let $table = "replication_applier_configuration";
|
|
let $key_group = 18;
|
|
let $target_channel_name = '';
|
|
|
|
--echo TABLE: $table
|
|
--echo INDEXES: PK (CHANNEL_NAME)
|
|
|
|
--source ../include/idx_compare_setup_index_test.inc
|
|
|
|
--source ../include/idx_compare_load.inc
|
|
|
|
--source ../include/idx_compare_cleanup_index_test.inc
|
|
|
|
--source include/rpl_end.inc
|
|
|