Re: Quick Inheritance questions - Mailing list pgsql-general

From Tom Lane
Subject Re: Quick Inheritance questions
Date
Msg-id 14183.1038496911@sss.pgh.pa.us
Whole thread Raw
In response to Quick Inheritance questions  (Adam Witney <awitney@sghms.ac.uk>)
List pgsql-general
Adam Witney <awitney@sghms.ac.uk> writes:
> I have a table that inherits an id field from a parent table, is there a way
> of determining which child table the row containing a particular id value
> comes from?

SELECT tableoid, ...other stuff... FROM parenttable WHERE ...

Typically you'd add a join to pg_class so that you can identify the
table by name instead of OID, but that's the basic idea.

> Also, just out of interest, if one table inherits a field from another table
> does the values contained within that field get stored on disk twice? (once
> for the parent table and once for the child table).

No.

            regards, tom lane

pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: tuplestore : write failed
Next
From: Jean-Luc Lachance
Date:
Subject: Re: Two features left