From 40eb468a1b2678475b648617bf5fc428739eb807 Mon Sep 17 00:00:00 2001 From: Stephen Frost Date: Tue, 29 Nov 2016 09:03:17 -0500 Subject: [PATCH] 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 --- doc/src/sgml/ref/psql-ref.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.40.0