summaryrefslogtreecommitdiff
path: root/mysql-test/r
diff options
context:
space:
mode:
authorVladislav Vaintroub <wlad@mariadb.com>2016-02-01 17:51:57 +0100
committerVladislav Vaintroub <wlad@mariadb.com>2016-02-01 17:51:57 +0100
commit52d695fef4f959daf12cc1e4b83907917dddfbe8 (patch)
tree645052e28d43f360e67d0a1bf1fef270fda2a2da /mysql-test/r
parente6dee57f1ae78326af9485170d232436fb49404f (diff)
downloadmariadb-git-52d695fef4f959daf12cc1e4b83907917dddfbe8.tar.gz
Fix authentication plugin's tests in case username contains non-alphanumeric character, e.g dash
Diffstat (limited to 'mysql-test/r')
-rw-r--r--mysql-test/r/auth_named_pipe.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/auth_named_pipe.result b/mysql-test/r/auth_named_pipe.result
index 8de507e1744..3268b760a22 100644
--- a/mysql-test/r/auth_named_pipe.result
+++ b/mysql-test/r/auth_named_pipe.result
@@ -1,9 +1,9 @@
INSTALL SONAME 'auth_named_pipe';
-CREATE USER USERNAME IDENTIFIED WITH named_pipe;
+CREATE USER 'USERNAME' IDENTIFIED WITH named_pipe;
SELECT USER(),CURRENT_USER();
USER() CURRENT_USER()
USERNAME@localhost USERNAME@%
-DROP USER USERNAME;
+DROP USER 'USERNAME';
CREATE USER nosuchuser IDENTIFIED WITH named_pipe;
ERROR 28000: Access denied for user 'nosuchuser'@'localhost'
DROP USER nosuchuser;