mariadb/mysql-test/r/auth_named_pipe.result

11 lines
359 B
Text
Raw Normal View History

2016-01-27 15:23:42 +01:00
INSTALL SONAME 'auth_named_pipe';
CREATE USER 'USERNAME' IDENTIFIED WITH named_pipe;
2016-01-27 15:23:42 +01:00
SELECT USER(),CURRENT_USER();
USER() CURRENT_USER()
USERNAME@localhost USERNAME@%
DROP USER 'USERNAME';
2016-01-27 15:23:42 +01:00
CREATE USER nosuchuser IDENTIFIED WITH named_pipe;
ERROR 28000: Access denied for user 'nosuchuser'@'localhost'
DROP USER nosuchuser;
UNINSTALL SONAME 'auth_named_pipe';