Inherits tables and current CVS

Поиск
Список
Период
Сортировка
От Teodor Sigaev
Тема Inherits tables and current CVS
Дата
Msg-id 3EF9BF0C.60807@sigaev.ru
обсуждение исходный текст
Ответы Re: Inherits tables and current CVS  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-general
How can I know tables is inherited or no?

# create table parent (
         id      int primary key,
         value   text
);

# create table child (
         cval    text,
         primary key (id)
) INHERITS (parent);

# \d child
      Table "public.child"
  Column |  Type   | Modifiers
--------+---------+-----------
  id     | integer | not null
  value  | text    |
  cval   | text    |
Indexes:
     "child_pkey" PRIMARY KEY btree (id)


\d doesn show any info about inheritance....



--
Teodor Sigaev                                  E-mail: teodor@sigaev.ru


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

Предыдущее
От: "Matthew Nuzum"
Дата:
Сообщение: change management
Следующее
От: Tom Lane
Дата:
Сообщение: Re: pg_statistic_relid_att_index