71 lines
2.1 KiB
Plaintext
71 lines
2.1 KiB
Plaintext
include/master-slave.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 master]
|
|
select * from performance_schema.replication_applier_configuration;
|
|
CHANNEL_NAME DESIRED_DELAY PRIVILEGE_CHECKS_USER
|
|
0 NULL
|
|
set @pfs_columns = "*";
|
|
TABLE: "replication_applier_configuration"
|
|
INDEXES: PK (CHANNEL_NAME)
|
|
|
|
## Create index_test() procedure
|
|
DROP PROCEDURE IF EXISTS index_test;
|
|
|
|
===== BEGIN TEST =====
|
|
========
|
|
SELECT * FROM performance_schema.replication_applier_configuration WHERE CHANNEL_NAME is null
|
|
|
|
OK: Handler_read_key
|
|
|
|
OK: Result set: Empty Expected: Empty
|
|
|
|
OK: Extra rows: 0 Missing rows: 0
|
|
========
|
|
SELECT * FROM performance_schema.replication_applier_configuration WHERE CHANNEL_NAME is not null
|
|
|
|
OK: Handler_read_key
|
|
|
|
OK: Result set: Non-empty Expected: Non-empty
|
|
|
|
OK: Extra rows: 0 Missing rows: 0
|
|
========
|
|
SELECT * FROM performance_schema.replication_applier_configuration WHERE CHANNEL_NAME = ''
|
|
|
|
OK: Handler_read_key
|
|
|
|
OK: Result set: Non-empty Expected: Non-empty
|
|
|
|
OK: Extra rows: 0 Missing rows: 0
|
|
========
|
|
SELECT * FROM performance_schema.replication_applier_configuration WHERE CHANNEL_NAME != ''
|
|
|
|
OK: Handler_read_key
|
|
|
|
OK: Result set: Empty Expected: Empty
|
|
|
|
OK: Extra rows: 0 Missing rows: 0
|
|
========
|
|
SELECT * FROM performance_schema.replication_applier_configuration WHERE CHANNEL_NAME = 'impossible'
|
|
|
|
OK: Handler_read_key
|
|
|
|
OK: Result set: Empty Expected: Empty
|
|
|
|
OK: Extra rows: 0 Missing rows: 0
|
|
========
|
|
SELECT * FROM performance_schema.replication_applier_configuration WHERE CHANNEL_NAME != 'impossible' ORDER BY CHANNEL_NAME DESC
|
|
|
|
OK: Handler_read_key
|
|
|
|
OK: Result set: Non-empty Expected: Non-empty
|
|
|
|
OK: Extra rows: 0 Missing rows: 0
|
|
|
|
===== CLEAN UP =====
|
|
DROP PROCEDURE index_test;
|
|
DROP TABLE IF EXISTS test.indexes_off;
|
|
DROP TABLE IF EXISTS test.indexes_on;
|
|
include/rpl_end.inc
|