Inherits tables and current CVS - Mailing list pgsql-general

From Teodor Sigaev
Subject Inherits tables and current CVS
Date
Msg-id 3EF9BF0C.60807@sigaev.ru
Whole thread Raw
Responses Re: Inherits tables and current CVS  (Tom Lane <tgl@sss.pgh.pa.us>)
List 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 by date:

Previous
From: "Matthew Nuzum"
Date:
Subject: change management
Next
From: Tom Lane
Date:
Subject: Re: pg_statistic_relid_att_index