Hi,
I compiled MySQL 5.0 from the source tree to test how stored procedures
work.
When I create a function, It is not stored in de mysql.func table, but in
the mysql.proc table.
Example of the function a create:
create function fun(a int) returns int
begin
set a = a + 1;
return a;
end;
Is this a bug or do I do something wrong?
gr. Bob
http://www.beheervisie.nl/disclaimer.
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]