1
0
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:
Sergei Golubchik
2019-04-16 09:33:02 +05:30
committed by Sergei Golubchik
parent c5e9674300
commit 5e8ab9b7af
3 changed files with 11 additions and 0 deletions

View File

@ -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 = '';