Help with function - Mailing list pgsql-admin

From Chris Hoover
Subject Help with function
Date
Msg-id 1d219a6f05081210483f5402fe@mail.gmail.com
Whole thread Raw
Responses Re: Help with function  (Chris Hoover <revoohc@gmail.com>)
Re: Help with function  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-admin
I need some help with how to define a function.  I am trying to create
a function that I pass two records into.  However, I can not seem to
get the syntax correct in the definition.

Exactly what I'm doing is having a rule on one of my views call a
function and pass the new.* and old.* records to the function.  the
function will then handle the inserting, updating, and deleting from
the underlying tables.

I tried to define the function as function_name(new_rec view_name,
old_rec view_name), but it abends on the call.

function_name(new_rec view_name%rowtype, old_rec view_name%rowtype)
will not compile.


Can someone please provide some guidance on how to pass the records to
my new function?

thanks,

Chris

pgsql-admin by date:

Previous
From: "D Kavan"
Date:
Subject: Re: pg_restore
Next
From: Chris Hoover
Date:
Subject: Re: Help with function