1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

MDEV-25884 Tests use environment $USER variable without quotes

This commit is contained in:
Elena Stepanova
2021-06-09 15:28:35 +03:00
parent c872125a66
commit 7a1eff0a9d
4 changed files with 10 additions and 10 deletions

View File

@ -2,7 +2,7 @@ install plugin unix_socket soname 'auth_socket.so';
#
# with named user
#
create user USER identified via unix_socket;
create user 'USER' identified via unix_socket;
#
# name match = ok
#
@ -12,7 +12,7 @@ USER@localhost USER@% test
#
# name does not match = failure
#
drop user USER;
drop user 'USER';
#
# and now with anonymous user
#