Re: tiny psql doc inconsistency

Поиск
Список
Период
Сортировка
От Stephen Frost
Тема Re: tiny psql doc inconsistency
Дата
Msg-id 20161129140342.GQ13284@tamriel.snowman.net
обсуждение исходный текст
Ответ на tiny psql doc inconsistency  (Fabien COELHO <coelho@cri.ensmp.fr>)
Список pgsql-hackers
Fabien,

* Fabien COELHO (coelho@cri.ensmp.fr) wrote:
> While reading the documentation, I noticed an tiny inconsistency at
> the end of:
>
>     https://www.postgresql.org/docs/devel/static/app-psql.html
>
>  testdb=> SELECT first, second, first > 2 AS gt2 FROM my_table;
>   first | second | ge2
>  -------+--------+-----
>       1 | one    | f
>       2 | two    | f
>       3 | three  | t
>       4 | four   | t
>  (4 rows)
>
> The third column name is not consistent with the query, both in 9.6
> and devel documentations.
>
> Attached is a small patch to fix this.

Fix pushed.

Thanks!

Stephen

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

Предыдущее
От: Heikki Linnakangas
Дата:
Сообщение: Random number generation, take two
Следующее
От: Craig Ringer
Дата:
Сообщение: Re: Re: Use procsignal_sigusr1_handler and RecoveryConflictInterrupt() from walsender?