Re: [HACKERS] CreateFunctionStmt struct

2004-12-23 Thread Alvaro Herrera
On Thu, Dec 23, 2004 at 11:57:09AM -0800, Sibtay Abbas wrote: Hi, > Can anyone tell me which field here is used to > indicated the language of the function, in which it is > written. > > like when we create a function we mention $$language > bla in the end. It's one of the options (options is a

[HACKERS] CreateFunctionStmt struct

2004-12-23 Thread Sibtay Abbas
hello, typedef struct CreateFunctionStmt { NodeTag type; boolreplace; List *funcname; List *parameters; TypeName *returnType; List *options; List