Re: psql: \d+ show tablespace of indices

Поиск
Список
Период
Сортировка
От Qingqing Zhou
Тема Re: psql: \d+ show tablespace of indices
Дата
Msg-id Pine.GSO.4.58.0506040251440.9525@qew.cs
обсуждение исходный текст
Ответ на Re: psql: \d+ show tablespace of indices  (Bruce Momjian <pgman@candle.pha.pa.us>)
Ответы Re: psql: \d+ show tablespace of indices  (Bruce Momjian <pgman@candle.pha.pa.us>)
Список 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"



Вложения

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

Предыдущее
От: Ron Mayer
Дата:
Сообщение: Re: Oracle date type compat. functions: next_day, last_day,
Следующее
От: "Magnus Hagander"
Дата:
Сообщение: Re: [HACKERS] Inefficiency in recent pgtz patch