Re: duplicates on primary key column - Mailing list pgsql-novice

From Tom Lane
Subject Re: duplicates on primary key column
Date
Msg-id 3524.1072194228@sss.pgh.pa.us
Whole thread Raw
In response to Re: duplicates on primary key column  (Marcin Gil <marcin.gil@audax.com.pl>)
Responses Re: duplicates on primary key column
List pgsql-novice
Marcin Gil <marcin.gil@audax.com.pl> writes:
> Tom Lane wrote:
>> I see no duplicate keys in your dump.  How do you provoke the problem
>> exactly?

> Hmm.. It's enough to do 'select docid from documents where docid=0'
> and I get 3 answers (3 rows).

That's because you made "archives" inherit from "documents", so the scan
includes the rows in "archives" that have docid=0.

You could do "SELECT docid FROM ONLY documents" if you don't want the
scan to include child tables.  But it's probably a bad idea to use
inheritance for the archives table at all.

            regards, tom lane

pgsql-novice by date:

Previous
From: Marcin Gil
Date:
Subject: Re: duplicates on primary key column
Next
From: Marcin Gil
Date:
Subject: Re: duplicates on primary key column