mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Bug#27302459: EMPTY VALUE IN MYSQL.PLUGIN TABLE CAUSES SERVER TO EXIT ON STARTUP
Description:- During server startup, the server exits if the 'mysql.plugin' system table has any rows with empty value for the field 'name' (plugin name).
This commit is contained in:
committed by
Sergei Golubchik
parent
c5e9674300
commit
5e8ab9b7af
@ -277,3 +277,5 @@ UNUSABLE
|
||||
uninstall soname 'ha_example';
|
||||
select plugin_name from information_schema.plugins where plugin_library like 'ha_example%';
|
||||
plugin_name
|
||||
insert mysql.plugin values ();
|
||||
delete from mysql.plugin where name = '';
|
||||
|
Reference in New Issue
Block a user