Re: Calling stored procedures in table constraint checks

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Florian Weimer <Weimer(at)CERT(dot)Uni-Stuttgart(dot)DE>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Calling stored procedures in table constraint checks
Date: 2002-08-12 15:11:07
Message-ID: 5165.1029165067@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Florian Weimer <Weimer(at)CERT(dot)Uni-Stuttgart(dot)DE> writes:
> I guess I need an example how I can pass an entire row to a stored
> procedure called in a table constraint check.
> Is this possible at all?

In CVS tip it works to do this:

regression=# create function foo(tenk1) returns int as '
regression'# begin
regression'# return $1.unique2;
regression'# end' language plpgsql;
CREATE
-- min(unique2) is 0, so:
regression=# alter table tenk1 add constraint c2 check (foo(tenk1.*) > 0);
ERROR: AlterTableAddConstraint: rejected due to CHECK constraint c2
regression=# alter table tenk1 add constraint c2 check (foo(tenk1.*) >= 0);
ALTER TABLE

The older syntax also works:

regression=# alter table tenk1 add constraint c3 check (foo(tenk1) >= 0);
ALTER TABLE

The latter *ought* to work in 7.2, but seems not to --- it looks like
the thing runs through the ALTER TABLE check, and then fails at the last
moment where it's trying to re-parse the expression for storage.
Grumble.

In any case this is a bit of a mess, because you can't create the
function until the row type exists, so you have to do it as create
table, create function, alter table add constraint. That's not only
ugly but will confuse the heck out of pg_dump. (thinks...) It might
work better to create a parent table, create the function taking
the parent's rowtype, then define the table you care about as inheriting
from the parent with no added columns and having the desired constraint.

In any case you'll probably have to wait for 7.3.

regards, tom lane

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Ludwig Lim 2002-08-12 15:11:48 Re: Need Help for select
Previous Message Florian Weimer 2002-08-12 14:13:09 Calling stored procedures in table constraint checks