Current Path : /home/usr.opt/mysql57/mysql-test/suite/rpl/t/ |
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 |
Current File : //home/usr.opt/mysql57/mysql-test/suite/rpl/t/rpl_replication_observers_example_plugin_channels.test |
# This test verifies the basic functionalities of the channel service interface. # Using the example plugin, we execute several of the interface methods, # verifying the result. --source include/not_embedded.inc --source include/have_debug.inc --source include/have_binlog_format_mixed.inc --source include/have_gtid.inc --source include/have_replication_observers_example_plugin.inc # Install the replication observers example plugin --source include/install_replication_observers_example.inc CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=InnoDB; # Execute a query that on a server hook will execute a test against the several # method of the channel interface SET @debug_saved= @@GLOBAL.DEBUG; SET @@GLOBAL.DEBUG= '+d,validate_replication_observers_plugin_server_channels'; --eval INSERT INTO t1 VALUES(1) # Clean SET @@GLOBAL.DEBUG= @debug_saved; DROP TABLE t1; --source include/uninstall_replication_observers_example.inc