Re: constraints & tableoid [pgsql8.1]

Поиск
Список
Период
Сортировка
От Michael Fuhr
Тема Re: constraints & tableoid [pgsql8.1]
Дата
Msg-id 20060411084350.GA52915@winnie.fuhr.org
обсуждение исходный текст
Ответ на constraints & tableoid [pgsql8.1]  (维 姜 <jw.pgsql@sduept.com>)
Ответы Re: constraints & tableoid [pgsql8.1]  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-bugs
On Tue, Apr 11, 2006 at 03:11:46PM +0800, ??? ??? wrote:
> jw=# CREATE TABLE base ( CHECK (tableoid = 'base'::regclass) );
> CREATE TABLE
> jw=# \d base
>     Table "public.base"
>  Column | Type | Modifiers
> --------+------+-----------
> Check constraints:
>     "base_tableoid_check" CHECK (tableoid = 'base'::regclass::oid)
>
> jw=# INSERT INTO base DEFAULT VALUES ;
> ERROR:  new row for relation "base" violates check constraint
> "base_tableoid_check"

Check the constraint with a function that logs its arguments and
you'll see what's happening:

test=> CREATE FUNCTION toid_check(oid, oid) RETURNS boolean AS $$
test$> BEGIN
test$>     RAISE INFO 'toid_check(%, %)', $1, $2;
test$>     RETURN $1 = $2;
test$> END;
test$> $$ LANGUAGE plpgsql IMMUTABLE STRICT;
CREATE FUNCTION

test=> CREATE TABLE base (CHECK(toid_check(tableoid, 'base'::regclass)));
CREATE TABLE

test=> INSERT INTO base DEFAULT VALUES;
INFO:  toid_check(0, 540339)
ERROR:  new row for relation "base" violates check constraint "base_tableoid_check"

Apparently a new row's tableoid isn't set until the row is actually
inserted.  Tableoid would be set in an AFTER trigger, but if the
intent is to prevent inheritance then enforcing the constraint with
a trigger on the base table wouldn't work because triggers aren't
inherited.

--
Michael Fuhr

В списке pgsql-bugs по дате отправления:

Предыдущее
От: Richard Huxton
Дата:
Сообщение: Re: constraints & tableoid [pgsql8.1]
Следующее
От: Tom Lane
Дата:
Сообщение: Re: constraints & tableoid [pgsql8.1]