mirror of
https://github.com/MariaDB/server.git
synced 2025-10-14 03:32:26 +02:00

Follow-up patch with adjustments of test files and updates of result files for tests. Some of tests were rewritten slighlty. Everywhere where common pattern used: ----- CREATE USER userA; --connect con1 ... userA ... <sql statements...> --disconnect con1 DROP USER userA; ----- the DROP USER statement has been eclosed into the directive --disable_warnings --enable_warnings This change is caused by the race conddition between --disconnect and DROP USER since a number of currently running sessions established on behalf the user being dropped is counted by holding the rw_lock THD_list_iterator::lock that is not acquired on execution the DROP USER statement but the lock is taken as the last step on handling disconnection (when the client is already sending the next statement). Therefore, for the cases where the command --disconnect precedes the DROP USER statement we hide the possible warnings about presence of active sessions for the user being deleted to make tests deterministic.
47 lines
1.2 KiB
Text
47 lines
1.2 KiB
Text
#
|
|
# MDEV-6896 kill user command cause MariaDB crash!
|
|
#
|
|
create user foo@'127.0.0.1';
|
|
connect con1,127.0.0.1,foo,,;
|
|
connection default;
|
|
select user from information_schema.processlist;
|
|
user
|
|
foo
|
|
root
|
|
kill user foo@'127.0.0.1';
|
|
drop user foo@'127.0.0.1';
|
|
#
|
|
# KILL USER and missing privileges
|
|
#
|
|
create user a@'127.0.0.1';
|
|
create user b@'127.0.0.1';
|
|
grant process on *.* to a@'127.0.0.1';
|
|
grant select on *.* to b@'127.0.0.1';
|
|
connect a,127.0.0.1,a;
|
|
show grants;
|
|
Grants for a@127.0.0.1
|
|
GRANT PROCESS ON *.* TO `a`@`127.0.0.1`
|
|
connect b,127.0.0.1,b;
|
|
show processlist;
|
|
Id User Host db Command Time State Info Progress
|
|
# b # test # # starting show processlist #
|
|
kill user a;
|
|
kill user x;
|
|
connection a;
|
|
show processlist;
|
|
Id User Host db Command Time State Info Progress
|
|
# root # test # # # # #
|
|
# a # NULL # # # # #
|
|
# b # test # # # # #
|
|
kill user b;
|
|
ERROR HY000: Operation KILL USER failed for b@%
|
|
connection default;
|
|
drop user a@'127.0.0.1';
|
|
Warnings:
|
|
Note 4226 Dropped users ['a'@'127.0.0.1'] have active connections. Use KILL CONNECTION if they should not be used anymore.
|
|
drop user b@'127.0.0.1';
|
|
Warnings:
|
|
Note 4226 Dropped users ['b'@'127.0.0.1'] have active connections. Use KILL CONNECTION if they should not be used anymore.
|
|
#
|
|
# End of 10.3 tests
|
|
#
|