[Fwd: Re: DROP FUNCTION doesn't work]

2005-07-18 Thread Nuno Pereira
[EMAIL PROTECTED] wrote: > mysql> create function betatouni returns string soname 'libbeta2.so'; > ERROR 1026 (HY000): Error writing file 'mysql.func' (errno: 121) Using perror from Linux, I saw: $ perror 121 Error code 121: Remote I/O error You probably have communications problems. Maybe y

Re: DROP FUNCTION doesn't work

2005-07-15 Thread Gleb Paharenko
Hello. Please check, if weird behavior remains on the latest release (4.1.12). Try to run FLUSH PRIVILEGES after 'drop function' statement and cast a look if mysql.func table is clear. Do you use xxx_deinit in your udf? I mean, is it possible that your function has some problem during dei

DROP FUNCTION doesn't work

2005-07-14 Thread jeremy_march
I can successfully LOAD a UDF in mysql-4.1.10, but I can't DROP it. MySQL reports that the DROP FUNCTION was OK, but the function still shows up in the mysql.func table. The function no longer works, but I have to TRUNCATE the mysql.func table in order to be able to LOAD it again. I am doing this