aboutsummaryrefslogtreecommitdiff
path: root/doc/src/sgml/ref
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2020-05-14 18:13:08 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2020-05-14 18:13:08 -0400
commit3d14c174cbbb6f83d8ac63fa7d0e1f42e0ae8d30 (patch)
tree25f77ee20958bba72c2cd855f24bea6f372d8d15 /doc/src/sgml/ref
parent5cbfce562f7cd2aab0cdc4694ce298ec3567930e (diff)
downloadpostgresql-3d14c174cbbb6f83d8ac63fa7d0e1f42e0ae8d30.tar.gz
postgresql-3d14c174cbbb6f83d8ac63fa7d0e1f42e0ae8d30.zip
Doc: tweak examples to silence line-too-long PDF build warnings.
In one or two places it seemed reasonable to modify the example so as to shorten its output slightly; but for the most part I just added a &zwsp; after 67 characters, which is the most we can fit on a line of monospace text in A4 format. Discussion: https://postgr.es/m/6916.1589146280@sss.pgh.pa.us
Diffstat (limited to 'doc/src/sgml/ref')
-rw-r--r--doc/src/sgml/ref/explain.sgml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/explain.sgml b/doc/src/sgml/ref/explain.sgml
index c6f333c3c90..7ddb5a05c65 100644
--- a/doc/src/sgml/ref/explain.sgml
+++ b/doc/src/sgml/ref/explain.sgml
@@ -420,7 +420,7 @@ EXPLAIN (COSTS FALSE) SELECT * FROM foo WHERE i = 4;
EXPLAIN SELECT sum(i) FROM foo WHERE i &lt; 10;
QUERY PLAN
----------------------------------------------------------------------
+-------------------------------------------------------------------&zwsp;--
Aggregate (cost=23.93..23.93 rows=1 width=4)
-&gt; Index Scan using fi on foo (cost=0.00..23.92 rows=6 width=4)
Index Cond: (i &lt; 10)
@@ -440,7 +440,7 @@ PREPARE query(int, int) AS SELECT sum(bar) FROM test
EXPLAIN ANALYZE EXECUTE query(100, 200);
QUERY PLAN
-------------------------------------------------------------------------------------------------------------------------
+-------------------------------------------------------------------&zwsp;-----------------------------------------------------
HashAggregate (cost=9.54..9.54 rows=1 width=8) (actual time=0.156..0.161 rows=11 loops=1)
Group Key: foo
-&gt; Index Scan using test_pkey on test (cost=0.29..9.29 rows=50 width=8) (actual time=0.039..0.091 rows=99 loops=1)