Re: split up psql \d Modifiers column

Поиск
Список
Период
Сортировка
От Peter Eisentraut
Тема Re: split up psql \d Modifiers column
Дата
Msg-id c27d40f8-8c0e-380b-66bc-2461b25e99ac@2ndquadrant.com
обсуждение исходный текст
Ответ на Re: split up psql \d Modifiers column  (Kuntal Ghosh <kuntalghosh.2007@gmail.com>)
Список pgsql-hackers
On 11/2/16 12:24 PM, Kuntal Ghosh wrote:
> On Fri, Oct 28, 2016 at 9:00 AM, Peter Eisentraut
> <peter.eisentraut@2ndquadrant.com> wrote:
>> I propose to change the psql \d output a bit, best shown with an example:
>>
>>  \d persons3
>> -       Table "public.persons3"
>> - Column |  Type   |    Modifiers
>> ---------+---------+------------------
>> - id     | integer | not null
>> - name   | text    | default ''::text
>> +              Table "public.persons3"
>> + Column |  Type   | Collation | Nullable | Default
>> +--------+---------+-----------+----------+----------
>> + id     | integer |           | not null |
>> + name   | text    |           |          | ''::text
>>
> +1.
> psql-ref.sgml(line 4085) needs to be modified. Otherwise, the patch
> looks good to me.

Good catch.  I didn't see that because it said "Modifier" instead of
"Modifiers".  I also saw that the domain listing \dD also used
"Modifier", so I updated that as well to the new style.  I have
committed the patch.  Thanks for reviewing it.

-- 
Peter Eisentraut              http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services



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

Предыдущее
От: Jesper Pedersen
Дата:
Сообщение: Re: Microvacuum support for Hash Index
Следующее
От: Kuntal Ghosh
Дата:
Сообщение: Re: WAL consistency check facility