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

These are only 10.4+ tests. 10.2+ tests are pushed into 10.2
and will be merged into 10.4+ independently
This commit is contained in:
Elena Stepanova
2021-06-09 15:50:01 +03:00
parent f13b80af39
commit 0b9a59bbc4
4 changed files with 38 additions and 38 deletions

View File

@ -1,8 +1,8 @@
#
# A password cannot expire, if there is no password
#
create user USER identified via unix_socket;
alter user USER password expire;
create user 'USER' identified via unix_socket;
alter user 'USER' password expire;
1
1
drop user USER;
drop user 'USER';