diff options
author | Stephen Frost <sfrost@snowman.net> | 2016-11-29 09:03:17 -0500 |
---|---|---|
committer | Stephen Frost <sfrost@snowman.net> | 2016-11-29 09:03:17 -0500 |
commit | 40eb468a1b2678475b648617bf5fc428739eb807 (patch) | |
tree | a64608579a7e21f216820b90079785cd1adb46dc | |
parent | d43ff47eabda68a8d37bf795ffb96809919b09b7 (diff) | |
download | postgresql-40eb468a1b2678475b648617bf5fc428739eb807.tar.gz postgresql-40eb468a1b2678475b648617bf5fc428739eb807.zip |
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
-rw-r--r-- | doc/src/sgml/ref/psql-ref.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml index 8a66ce79833..168a295013f 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 <command>\crosstabview</command> command: <programlisting> testdb=> <userinput>SELECT first, second, first > 2 AS gt2 FROM my_table;</userinput> - first | second | ge2 + first | second | gt2 -------+--------+----- 1 | one | f 2 | two | f |