Re: MySQL 5.0, func stored in proc table

2003-09-30 Thread Jeremy Zawodny
On Tue, Sep 30, 2003 at 09:26:11AM +0200, Bob Brands wrote: > 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: > > crea

MySQL 5.0, func stored in proc table

2003-09-30 Thread Bob Brands
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