From 9198c0e1ef5bfd6fcdbc38d171ecbb598c0d22a3 Mon Sep 17 00:00:00 2001 From: Oleksandr Byelkin Date: Fri, 31 Jul 2020 16:07:15 +0200 Subject: fix --- sql/sql_plugin.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/sql_plugin.cc b/sql/sql_plugin.cc index 10caf95dc73..981420f03ae 100644 --- a/sql/sql_plugin.cc +++ b/sql/sql_plugin.cc @@ -2327,7 +2327,7 @@ static bool do_uninstall(THD *thd, TABLE *table, const LEX_CSTRING *name) else if (!plugin) { const myf MyFlags= thd->lex->if_exists() ? ME_NOTE : 0; - my_error(ER_SP_DOES_NOT_EXIST, MYF(0), "PLUGIN", name->str); + my_error(ER_SP_DOES_NOT_EXIST, MyFlags, "PLUGIN", name->str); return !MyFlags; } return 0; -- cgit v1.2.1