我想将一些udfs添加到MySQL服务器,我在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
答案 0 :(得分:0)
尝试检查http://kmaiti.blogspot.com/2010/11/how-to-install-tcpwrapper-on-linux.html。 看起来你必须将'ipv6_ntop'导入库中。
http://www.justskins.com/forums/issues-creating-function-140539.html
http://dev.mysql.com/doc/refman/5.0/en/create-procedure.html
再次 - 如果你没有先创建它,你就不能丢弃它。
答案 1 :(得分:0)
mysql> drop function 'inet6_ntop';
/ WITH QUOTES /