Re: [BUGS] Running queries on inherited tables

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [BUGS] Running queries on inherited tables
Дата
Msg-id 2894.937156057@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Running queries on inherited tables  (Michael Richards <miker@scifair.acadiau.ca>)
Ответы Re: [BUGS] Running queries on inherited tables
Список pgsql-bugs
Michael Richards <miker@scifair.acadiau.ca> writes:
> I was fooling with inheritance today. From the page at:
> http://www.postgresql.org/docs/user/inherit.htm
> Here the * after cities indicates that the query should be run over cities
> and all classes below cities in the inheritance hierarchy. Many of the
> commands that we have
> already discussed -- SELECT, UPDATE and DELETE -- support this * notation,
> as do others, like ALTER TABLE.

The doc is wrong here --- UPDATE and DELETE don't support *.  They should.

> More playing followed... If I alter table on cities and add a column, is
> it not expected that the additional col should appear in the tables which
> inherit from cities?

You have to say "alter table cities*", I believe, otherwise only cities
is changed.  Which is pretty broken --- if inheritance means anything,
then it ought to mean that the alteration is *inherently* applied to all
the child tables too, and you shouldn't have the option.  In general,
however, beware that alteration of inheritance structures is pretty
thoroughly broken --- see various complaints in the pghackers archives
(mostly from Chris Bitmead, I think).  ALTER TABLE really needs a
reimplementation from the ground up, but I dunno when anyone will get
around to it.

            regards, tom lane

В списке pgsql-bugs по дате отправления:

Предыдущее
От: Michael Richards
Дата:
Сообщение: Running queries on inherited tables
Следующее
От: Michael Richards
Дата:
Сообщение: Re: [BUGS] Running queries on inherited tables