Re: psql: \d+ show tablespace of indices - Mailing list pgsql-patches

From Qingqing Zhou
Subject Re: psql: \d+ show tablespace of indices
Date
Msg-id Pine.GSO.4.58.0506040251440.9525@qew.cs
Whole thread Raw
In response to Re: psql: \d+ show tablespace of indices  (Bruce Momjian <pgman@candle.pha.pa.us>)
Responses Re: psql: \d+ show tablespace of indices
List pgsql-patches
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"



Attachment

pgsql-patches by date:

Previous
From: Ron Mayer
Date:
Subject: Re: Oracle date type compat. functions: next_day, last_day,
Next
From: "Magnus Hagander"
Date:
Subject: Re: [HACKERS] Inefficiency in recent pgtz patch