pgsql: Now \d show tablespace of indices per discussion.

From: momjian(at)svr1(dot)postgresql(dot)org (Bruce Momjian)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Now \d show tablespace of indices per discussion.
Date: 2005-06-14 23:59:32
Message-ID: 20050614235932.0FEC05289B@svr1.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
Now \d show tablespace of indices per discussion.

test=# \d e
Table "public.e"
Column | Type | Modifiers
--------+---------+-----------
i | integer | not null
j | integer | not null
k | integer |
Indexes:
"e_pkey" PRIMARY KEY, btree (i, j), tablespace "haha"
"ei" btree (i)
"ej" btree (j), tablespace "haha"
"ek" btree (k)
Tablespace: "haha"

Qingqing Zhou

Modified Files:
--------------
pgsql/src/bin/psql:
describe.c (r1.116 -> r1.117)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/describe.c.diff?r1=1.116&r2=1.117)

Browse pgsql-committers by date

  From Date Subject
Next Message Bruce Momjian 2005-06-15 00:09:27 pgsql: >> Do you agree that using a hashtable for it in general is a
Previous Message Bruce Momjian 2005-06-14 23:47:40 pgsql: Add BETWEEN SYMMETRIC.