aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Gustafsson <dgustafsson@postgresql.org>2023-11-13 14:13:03 +0100
committerDaniel Gustafsson <dgustafsson@postgresql.org>2023-11-13 14:13:03 +0100
commit77234f487a0420a88e420459da4fdcda7462ce3a (patch)
tree9a00ada5985481c7a0338e2d5017fa734d79aa62
parentd3d73e85aa30bbfffc27c5918d5092ab963fc0c4 (diff)
downloadpostgresql-77234f487a0420a88e420459da4fdcda7462ce3a.tar.gz
postgresql-77234f487a0420a88e420459da4fdcda7462ce3a.zip
doc: Add missing semicolon in example
One of the examples on the SELECT page was missing a semicolon from a listing which has the look and feel of being a psql session. This adds the missing semicolon and also removes the newline between the query and results to match the other examples nearby. Backpatch to all supported branches to avoid backpatching issues on this page. Reported-by: tim.needham2@gmail.com Discussion: https://postgr.es/m/169965004097.225187.12941375915673151540@wrigleys.postgresql.org Backpatch-through: v12
-rw-r--r--doc/src/sgml/ref/select.sgml3
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/select.sgml b/doc/src/sgml/ref/select.sgml
index 711f7261724..f883a119a15 100644
--- a/doc/src/sgml/ref/select.sgml
+++ b/doc/src/sgml/ref/select.sgml
@@ -1857,8 +1857,7 @@ WITH t AS (
)
SELECT * FROM t
UNION ALL
-SELECT * FROM t
-
+SELECT * FROM t;
x
--------------------
0.534150459803641