summaryrefslogtreecommitdiff
path: root/mysql-test/r/auth_rpl.result
diff options
context:
space:
mode:
authorRafal Somla <rafal.somla@oracle.com>2011-09-14 16:10:18 +0200
committerRafal Somla <rafal.somla@oracle.com>2011-09-14 16:10:18 +0200
commit93f2daf3ad75562a6a173a032668a6e0556684b5 (patch)
treeaadee2ac972792c03350f5f834e8cee27f2d8c52 /mysql-test/r/auth_rpl.result
parent3d6fc1711c8bff76c9bb848d4e06cdd2c2176e64 (diff)
downloadmariadb-git-93f2daf3ad75562a6a173a032668a6e0556684b5.tar.gz
Bug#12897501 REPLICATION DOES NOT SUPPORT WINDOWS AUTH PLUG-IN
Connection of slave to master using a replication account which authenticates with an external plugin was not possible. Fixed by making sure that the CLIENT_PLUGIN_AUTH capability is set when client connects using mysql_real_connect(). Also, a plugin-dir path used by client library to locate authentication plugins is set based on the analogous server setting. This is done in connect_to_master() function before a call to mysql_real_connect().
Diffstat (limited to 'mysql-test/r/auth_rpl.result')
-rw-r--r--mysql-test/r/auth_rpl.result22
1 files changed, 22 insertions, 0 deletions
diff --git a/mysql-test/r/auth_rpl.result b/mysql-test/r/auth_rpl.result
new file mode 100644
index 00000000000..1c03461df9b
--- /dev/null
+++ b/mysql-test/r/auth_rpl.result
@@ -0,0 +1,22 @@
+include/master-slave.inc
+[connection master]
+[connection slave]
+include/stop_slave.inc
+[connection master]
+CREATE USER 'plug_user' IDENTIFIED WITH 'test_plugin_server' AS 'plug_user';
+GRANT REPLICATION SLAVE ON *.* TO plug_user;
+FLUSH PRIVILEGES;
+[connection slave]
+CHANGE MASTER TO MASTER_USER= 'plug_user';
+include/start_slave.inc
+# Slave in-sync with master now.
+SELECT user, plugin, authentication_string FROM mysql.user WHERE user LIKE 'plug_user';
+user plugin authentication_string
+plug_user test_plugin_server plug_user
+# Cleanup (on slave).
+include/stop_slave.inc
+CHANGE MASTER TO MASTER_USER='root';
+DROP USER 'plug_user';
+# Cleanup (on master).
+DROP USER 'plug_user';
+include/rpl_end.inc