ernardy
> Cc: pgsql-bugs@postgresql.org
> Subject: Re: [BUGS] overlapping rules can let you break
> referential integrity
>
>
> "Denis de Bernardy" <[EMAIL PROTECTED]> writes:
> > Step by step how to reproduce:
>
> This is not a bug, it
"Denis de Bernardy" <[EMAIL PROTECTED]> writes:
> Step by step how to reproduce:
This is not a bug, it's a feature.
regards, tom lane
---(end of broadcast)---
TIP 2: Don't 'kill -9' the postmaster
Step by step how to reproduce:
-- nodes
CREATE TABLE nodes
(
node_id serial,
CONSTRAINT nodes_pkey PRIMARY KEY (node_id)
)
WITHOUT OIDS;
-- domains
CREATE TABLE domains
(
domain_id int NOT NULL,
domain_is_p