Re: [GENERAL] Adding Functionality

2004-02-18 Thread Tom Lane
Fernando Alonso Renault <[EMAIL PROTECTED]> writes: > i'm quite a newbie using postgres 7.2 so this may be an easy question, but how do i > add new funtionality? I mean, i wanna add a couple of new functions, and i've found > this files, pg_proc.h and fmgrtab.c, but i don't know the meaning of th

Re: [GENERAL] Adding Functionality

2004-02-18 Thread Fernando Alonso Renault
I read about the CREATE FUNCTION command, but the problem is that i must do it the hard way (orders are orders :( ). i learnt to do it like that in mysql, by using the CREATE FUNCTION and by adding the lines to the different files, but know i must do it adding the lines. i tried downloading a co

Re: [GENERAL] Adding Functionality

2004-02-18 Thread Martijn van Oosterhout
That stuff defines the pg_proc table. Generally you use the CREATE FUNCTION command to add functions. It takes care of all these details for you :) \d pg_proc might give you some info. On Wed, Feb 18, 2004 at 11:49:39AM -0500, Fernando Alonso Renault wrote: > Hello, > > i'm quite a newbie using