mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
MDEV-36397 Record change_user command in MTR output
MTR .result files currently do not contain output to indicate if a change_user command has been executed in the corresponding .test files. Record change_user command in the following format in MTR output only if disable_query_log is set to false: change_user <user>,<password>,<db>; All new code of the whole pull request, including one or several files that are either new files or modified ones, are contributed under the BSD-new license. I am contributing on behalf of my employer Amazon Web Services, Inc.
This commit is contained in:
committed by
Sergei Golubchik
parent
2ee2e2d0f3
commit
212fad1b7e
@@ -49,6 +49,7 @@ ERROR 42000: SELECT command denied to user 'wl5924'@'localhost' for table `perfo
|
||||
connection default;
|
||||
disconnect non_privileged_user;
|
||||
grant select on performance_schema.* to wl5924@localhost;
|
||||
change_user wl5924,,;
|
||||
SELECT SUM(ISNULL(ATTR_VALUE)), COUNT(*)
|
||||
FROM performance_schema.session_account_connect_attrs
|
||||
WHERE ATTR_NAME IN ('_os', '_client_name', '_pid',
|
||||
@@ -56,4 +57,5 @@ WHERE ATTR_NAME IN ('_os', '_client_name', '_pid',
|
||||
AND PROCESSLIST_ID = CONNECTION_ID();
|
||||
SUM(ISNULL(ATTR_VALUE)) COUNT(*)
|
||||
0 6
|
||||
change_user root,,test;
|
||||
DROP USER wl5924@localhost;
|
||||
|
Reference in New Issue
Block a user