1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-02 11:44:50 +03:00

Correct psql documentation example

An example in the psql documentation had an incorrect field name from
what the command actually produced.

Pointed out by Fabien COELHO

Back-patch to 9.6 where the example was added.

Discussion: https://postgr.es/m/alpine.DEB.2.20.1611291349400.19314@lancre
This commit is contained in:
Stephen Frost 2016-11-29 09:03:11 -05:00
parent 4e20511d5b
commit 489a51af12

View File

@ -4172,7 +4172,7 @@ second | four
with the <command>\crosstabview</command> command: with the <command>\crosstabview</command> command:
<programlisting> <programlisting>
testdb=&gt; <userinput>SELECT first, second, first &gt; 2 AS gt2 FROM my_table;</userinput> testdb=&gt; <userinput>SELECT first, second, first &gt; 2 AS gt2 FROM my_table;</userinput>
first | second | ge2 first | second | gt2
-------+--------+----- -------+--------+-----
1 | one | f 1 | one | f
2 | two | f 2 | two | f