]> granicus.if.org Git - postgresql/commitdiff
doc: Replace non-ASCII lines in psql example output
authorPeter Eisentraut <peter_e@gmx.net>
Fri, 29 Jun 2018 19:23:23 +0000 (21:23 +0200)
committerPeter Eisentraut <peter_e@gmx.net>
Fri, 29 Jun 2018 19:23:23 +0000 (21:23 +0200)
doc/src/sgml/ddl.sgml

index 50dc25f87f8e91806a91120084a20a210e9526c4..d9fb5c87dfdaa7999b52e4d2332aab3548ef2315 100644 (file)
@@ -3812,7 +3812,7 @@ SELECT count(*) FROM measurement WHERE logdate &gt;= DATE '2008-01-01';
 SET enable_partition_pruning = off;
 EXPLAIN SELECT count(*) FROM measurement WHERE logdate &gt;= DATE '2008-01-01';
                                     QUERY PLAN
-───────────────────────────────────────────────────────────────────────────────────
+-----------------------------------------------------------------------------------
  Aggregate  (cost=188.76..188.77 rows=1 width=8)
    -&gt;  Append  (cost=0.00..181.05 rows=3085 width=0)
          -&gt;  Seq Scan on measurement_y2006m02  (cost=0.00..33.12 rows=617 width=0)
@@ -3837,7 +3837,7 @@ EXPLAIN SELECT count(*) FROM measurement WHERE logdate &gt;= DATE '2008-01-01';
 SET enable_partition_pruning = on;
 EXPLAIN SELECT count(*) FROM measurement WHERE logdate &gt;= DATE '2008-01-01';
                                     QUERY PLAN
-───────────────────────────────────────────────────────────────────────────────────
+-----------------------------------------------------------------------------------
  Aggregate  (cost=37.75..37.76 rows=1 width=8)
    -&gt;  Append  (cost=0.00..36.21 rows=617 width=0)
          -&gt;  Seq Scan on measurement_y2008m01  (cost=0.00..33.12 rows=617 width=0)