From: | Oleg Bartunov <oleg(at)sai(dot)msu(dot)su> |
---|---|
To: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
Cc: | elein <elein(at)varlena(dot)com>, Pgsql Hackers <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: how to make table inherits another ? |
Date: | 2005-02-16 21:53:09 |
Message-ID: | Pine.GSO.4.62.0502170051390.8005@ra.sai.msu.su |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On Wed, 16 Feb 2005, Tom Lane wrote:
> Oleg Bartunov <oleg(at)sai(dot)msu(dot)su> writes:
>> I know this. I need to create inheritance for already created tables.
>> There is no way to do this using alter table, so I tried to
>> define it by hand :)
>
> Did you remember to set relhassubclass for the parent table?
> AFAIR, all that you really need are that and the pg_inherits row.
Aha, that works. Thanks, Tom.
>
> It'd be a good idea to install a pg_depend entry, and to modify the
> child's pg_attribute rows to show the columns as inherited (attislocal
> and attinhcount) but I believe the latter would only bite you if you
> tried to do ALTER commands on the tables later.
>
I'll save this info.
> regards, tom lane
>
Regards,
Oleg
_____________________________________________________________
Oleg Bartunov, sci.researcher, hostmaster of AstroNet,
Sternberg Astronomical Institute, Moscow University (Russia)
Internet: oleg(at)sai(dot)msu(dot)su, http://www.sai.msu.su/~megera/
phone: +007(095)939-16-83, +007(095)939-23-83
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2005-02-16 23:21:11 | Re: Strange RETURN NEXT behaviour in Postgres 8.0 |
Previous Message | Tom Lane | 2005-02-16 21:35:08 | Re: how to make table inherits another ? |