diff options
author | Georgi Kodinov <Georgi.Kodinov@Oracle.com> | 2011-05-16 19:46:44 +0300 |
---|---|---|
committer | Georgi Kodinov <Georgi.Kodinov@Oracle.com> | 2011-05-16 19:46:44 +0300 |
commit | 8f73e64fff57fe4080cfc4d2816555b0d22b9e13 (patch) | |
tree | 9aa2410569c349f7dca2caa7bda01cba64ae8c4b /mysql-test/suite/federated | |
parent | 0fd26247800a6b9abf6eb6895ef47f6b3187be4e (diff) | |
download | mariadb-git-8f73e64fff57fe4080cfc4d2816555b0d22b9e13.tar.gz |
Bug #11766641: 59792: BIN/MYSQL -UUNKNOWN -PUNKNOWN
.-> USING PASSWORD: NO
The server was always setting the flag for using password to NO and
then relying on the server authentication plugin to update it if it uses
a password.
This creates compatibility problems with 5.1 when rejecting a
nonexistent user login.
Set the default for the password supplied flag for non-existing users
as the default plugin (native password authentication) would do it
for compatibility reasons.
Test case added.
federated.result updated with the correct error message.
Diffstat (limited to 'mysql-test/suite/federated')
-rw-r--r-- | mysql-test/suite/federated/federated.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/suite/federated/federated.result b/mysql-test/suite/federated/federated.result index 4cd7b416621..db4ffc38213 100644 --- a/mysql-test/suite/federated/federated.result +++ b/mysql-test/suite/federated/federated.result @@ -60,7 +60,7 @@ CREATE TABLE federated.t1 ( ENGINE="FEDERATED" DEFAULT CHARSET=latin1 CONNECTION='mysql://user:pass@127.0.0.1:SLAVE_PORT/federated/t1'; SELECT * FROM federated.t1; -ERROR HY000: Unable to connect to foreign data source: Access denied for user 'user'@'localhost' (using password: NO) +ERROR HY000: Unable to connect to foreign data source: Access denied for user 'user'@'localhost' (using password: YES) DROP TABLE federated.t1; CREATE TABLE federated.t1 ( `id` int(20) NOT NULL, |