Re: [SQL] passing a record as a function argument in pl/pgsql

2003-07-01 Thread Joe Conway
Alon Noy wrote: From what I tried it is possible to create such a function but it is not possible to call it ?! Can anyone provide an example? create table foo (f1 int, f2 text); insert into foo values(1,'a'); insert into foo values(2,'b'); insert into foo values(3,'c'); create or replace function

[SQL] passing a record as a function argument in pl/pgsql

2003-07-01 Thread Alon Noy
Is it possible?   From what I tried it is possible to create such a function but it is not possible to call it ?! Can anyone provide an example?   Tnx.