]> granicus.if.org Git - postgresql/commitdiff
Sample output that appears below the table attributes for \d:
authorBruce Momjian <bruce@momjian.us>
Mon, 28 May 2001 04:27:17 +0000 (04:27 +0000)
committerBruce Momjian <bruce@momjian.us>
Mon, 28 May 2001 04:27:17 +0000 (04:27 +0000)
Indicies: palm_buy_date_idx
          palm_user_date_idx
Primary Key: palm_buyers_pkey
Unique Key: palm_buyers_username
Constraint: "$1" ((sex = 'M'::bpchar) OR (sex = 'F'::bpchar))

Note that check constraint name now shown as well.  (Makes it a lot easier
to test inheritance support in ADD/DROP constraint :) )

Attached is a docs change for psql.

Christopher Kings

doc/src/sgml/ref/psql-ref.sgml

index ac58fdb3843bee9bdbdada8522a846b4209faf18..a3b49bc3f6f4f705a59369d01915427efbc9d502 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.54 2001/05/27 09:59:28 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.55 2001/05/28 04:27:17 momjian Exp $
 Postgres documentation
 -->
 
@@ -348,7 +348,8 @@ testdb=>
        (which could be a table, view, index, or sequence),
        their types, and any special attributes such as <literal>NOT NULL</literal>
        or defaults, if any.
-       If the relation is, in fact, a table, any defined indexes are also listed.
+       If the relation is, in fact, a table, any defined indices, primary keys, unique 
+       constraints and check constraints are also listed.
        If the relation is a view, the view definition is also shown.
        </para>