mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
12 lines
252 B
Text
12 lines
252 B
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';
|