mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
MDEV-6720 - enable connection log in mysqltest by default
This commit is contained in:
@ -3,11 +3,16 @@
|
||||
#
|
||||
CREATE USER bug51770@localhost;
|
||||
GRANT INSERT ON mysql.plugin TO bug51770@localhost;
|
||||
connect con1,localhost,bug51770,,;
|
||||
INSTALL PLUGIN example SONAME 'ha_example.so';
|
||||
UNINSTALL PLUGIN example;
|
||||
ERROR 42000: DELETE command denied to user 'bug51770'@'localhost' for table 'plugin'
|
||||
connection default;
|
||||
GRANT DELETE ON mysql.plugin TO bug51770@localhost;
|
||||
connection con1;
|
||||
UNINSTALL PLUGIN example;
|
||||
disconnect con1;
|
||||
connection default;
|
||||
DROP USER bug51770@localhost;
|
||||
INSTALL PLUGIN example SONAME '../ha_example.so';
|
||||
ERROR HY000: No paths allowed for shared library
|
||||
|
Reference in New Issue
Block a user