summaryrefslogtreecommitdiff
path: root/mysql-test/r/auth_rpl.result
diff options
context:
space:
mode:
authorRafal Somla <rafal.somla@oracle.com>2011-09-16 14:35:25 +0200
committerRafal Somla <rafal.somla@oracle.com>2011-09-16 14:35:25 +0200
commitc388e9c49dd96b46c06033dbc476b42e75291f7f (patch)
treef2b1d94e13b15cc797993970246fe2b301baac26 /mysql-test/r/auth_rpl.result
parentcb9e23bb30319c888b4d6ed37d5560357477e327 (diff)
downloadmariadb-git-c388e9c49dd96b46c06033dbc476b42e75291f7f.tar.gz
Update of auth_rpl test.
For some reason the test authentication plugin accepted connection with arbitrary password. But the intention of the plugin is that password should equal to the authentication string and in the later versions of the server connection fails if password is wrong. So I have updated auth_rpl test to specify the correct password.
Diffstat (limited to 'mysql-test/r/auth_rpl.result')
-rw-r--r--mysql-test/r/auth_rpl.result4
1 files changed, 3 insertions, 1 deletions
diff --git a/mysql-test/r/auth_rpl.result b/mysql-test/r/auth_rpl.result
index 1c03461df9b..70626b02b2b 100644
--- a/mysql-test/r/auth_rpl.result
+++ b/mysql-test/r/auth_rpl.result
@@ -7,7 +7,9 @@ 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';
+CHANGE MASTER TO
+MASTER_USER= 'plug_user',
+MASTER_PASSWORD= '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';