From: Stephen Frost Date: Tue, 29 Nov 2016 14:03:17 +0000 (-0500) Subject: Correct psql documentation example X-Git-Tag: REL9_6_2~110 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=40eb468a1b2678475b648617bf5fc428739eb807;p=postgresql 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 --- diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml index 8a66ce7983..168a295013 100644 --- a/doc/src/sgml/ref/psql-ref.sgml +++ b/doc/src/sgml/ref/psql-ref.sgml @@ -4170,7 +4170,7 @@ second | four with the \crosstabview command: testdb=> SELECT first, second, first > 2 AS gt2 FROM my_table; - first | second | ge2 + first | second | gt2 -------+--------+----- 1 | one | f 2 | two | f