Server IP : 172.67.216.182 / Your IP : 172.68.164.60 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/mysql-test/suite/rpl/t/ |
Upload File : |
# # Bug#35807 - INSTALL PLUGIN replicates row-based, but not stmt-based # # The test verifies that INSTALL PLUGIN and UNINSTALL PLUGIN # work with replication. # # The test tries to install and uninstall a plugin on master, # and verifies that it does not affect the slave, # and that it does not add anything to the binlog. --source include/not_embedded.inc --source include/have_log_bin.inc # Dynamic loading of Example does not work on Windows currently. --source include/not_windows.inc --source include/have_example_plugin.inc # Initialize replication. --source include/master-slave.inc --echo Verify that example engine is not installed. SELECT * FROM INFORMATION_SCHEMA.ENGINES WHERE ENGINE='EXAMPLE'; --echo Get binlog position before install plugin. let $before_pos = query_get_value("SHOW MASTER STATUS", Position, 1); --echo Install example engine. INSTALL PLUGIN example SONAME 'ha_example.so'; --echo Get binlog position after install plugin. let $after_pos = query_get_value("SHOW MASTER STATUS", Position, 1); --echo Compute the difference of the binlog positions. --echo Should be zero as install plugin should not be replicated. --disable_query_log eval SELECT $after_pos - $before_pos AS Delta; --enable_query_log --echo Verify that example engine is installed. SELECT * FROM INFORMATION_SCHEMA.ENGINES WHERE ENGINE='EXAMPLE'; # Wait for slave to catch up with master. --source include/sync_slave_sql_with_master.inc # --echo connection slave: Verify that example engine is not installed. connection slave; SELECT * FROM INFORMATION_SCHEMA.ENGINES WHERE ENGINE='EXAMPLE'; # --echo connection master: Uninstall example engine. connection master; --echo Get binlog position before uninstall plugin. let $before_pos = query_get_value("SHOW MASTER STATUS", Position, 1); UNINSTALL PLUGIN example; --echo Get binlog position after uninstall plugin. let $after_pos = query_get_value("SHOW MASTER STATUS", Position, 1); --echo Compute the difference of the binlog positions. --echo Should be zero as uninstall plugin should not be replicated. --disable_query_log eval SELECT $after_pos - $before_pos AS Delta; --enable_query_log --echo Verify that example engine is not installed. SELECT * FROM INFORMATION_SCHEMA.ENGINES WHERE ENGINE='EXAMPLE'; # Wait for slave to catch up with master. --source include/sync_slave_sql_with_master.inc # # Cleanup --source include/rpl_end.inc --echo End of test