tiny psql doc inconsistency

From: Fabien COELHO <coelho(at)cri(dot)ensmp(dot)fr>
To: PostgreSQL Developers <pgsql-hackers(at)postgresql(dot)org>
Subject: tiny psql doc inconsistency
Date: 2016-11-29 12:56:26
Message-ID: alpine.DEB.2.20.1611291349400.19314@lancre
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers


Hello,

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.

--
Fabien.

Attachment Content-Type Size
psql-doc-1.patch text/x-diff 509 bytes

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Heikki Linnakangas 2016-11-29 13:02:54 Random number generation, take two
Previous Message Fabien COELHO 2016-11-29 12:10:06 Re: PSQL commands: \quit_if, \quit_unless