| From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
|---|---|
| To: | "Sam Wong" <sam(at)hellosam(dot)net> |
| Cc: | pgsql-bugs(at)postgresql(dot)org |
| Subject: | Re: BUG #4327: Primary key not refresh after cascaded deleted |
| Date: | 2008-07-28 16:17:52 |
| Message-ID: | 22201.1217261872@sss.pgh.pa.us |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-bugs |
"Sam Wong" <sam(at)hellosam(dot)net> writes:
> Then when I try to insert the following into B:
> A,4
> it will say
> duplicate key value violates unique constraint "B_primary_column_pkey".
Works for me:
regression=# create table a (A_primary_col int primary key);
NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "a_pkey" for table "a"
CREATE TABLE
regression=# insert into a values (1),(2),(3);
INSERT 0 3
regression=# create table b (B_primary_col text primary key, a_reference int references a on delete cascade);
NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "b_pkey" for table "b"
CREATE TABLE
regression=# insert into b values('A',1),('B',2),('C',3);
INSERT 0 3
regression=# DELETE FROM A;
DELETE 3
regression=# select * from a;
a_primary_col
---------------
(0 rows)
regression=# select * from b;
b_primary_col | a_reference
---------------+-------------
(0 rows)
regression=# insert into a values (4);
INSERT 0 1
regression=# insert into b values('A',4);
INSERT 0 1
I suspect a mistake on your part. If you can actually reproduce this
problem, please show an exact test case, not hand-waving.
regards, tom lane
| From | Date | Subject | |
|---|---|---|---|
| Next Message | William Kyngesburye | 2008-07-28 18:50:59 | BUG #4330: Bonjour connections ignore hba config METHOD and always trusted |
| Previous Message | Tom Lane | 2008-07-28 16:10:09 | Re: BUG #4329: Transaction model changed? |