我想在插件服务器上添加一些.dll文件,我在mysql/lib/plugin文件夹中有一个udf文件。
我打开了一个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
发布于 2012-10-23 15:54:39
尝试检查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
再说一次,如果你没有事先创建一些东西,你就不能丢弃它。
发布于 2015-03-21 04:17:17
mysql> drop function 'inet6_ntop';
/WITH报价/
https://stackoverflow.com/questions/13025693
复制相似问题