我想向 MySQL 服务器添加一些 udf,并且我在 mysql/lib/plugin 文件夹中有 .dll 文件。
我打开了一个 MySQL 客户端,它报告了一些奇怪的错误。
mysql> create function ipv6_ntop returns string soname 'libmysql-udf-ipv6.dll';
ERROR 1125 (HY000): Function 'inet6_ntop' already exists
然后我尝试删除此功能:
mysql> drop function inet6_ntop;
ERROR 1305 (42000): FUNCTION (UDF) inet6_ntop does not exist