diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2018-06-29 21:23:23 +0200 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2018-06-29 21:23:23 +0200 |
commit | 539f32bdd6915e950d225e732959a1b068598993 (patch) | |
tree | ea4e4d588a064171b7e87b0e98ba471bbd6a7248 | |
parent | bc87f22ef6ef1137909ed7363976c67cf1efa7da (diff) | |
download | postgresql-539f32bdd6915e950d225e732959a1b068598993.tar.gz postgresql-539f32bdd6915e950d225e732959a1b068598993.zip |
doc: Replace non-ASCII lines in psql example output
-rw-r--r-- | doc/src/sgml/ddl.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ddl.sgml b/doc/src/sgml/ddl.sgml index 50dc25f87f8..d9fb5c87dfd 100644 --- a/doc/src/sgml/ddl.sgml +++ b/doc/src/sgml/ddl.sgml @@ -3812,7 +3812,7 @@ SELECT count(*) FROM measurement WHERE logdate >= DATE '2008-01-01'; SET enable_partition_pruning = off; EXPLAIN SELECT count(*) FROM measurement WHERE logdate >= DATE '2008-01-01'; QUERY PLAN -─────────────────────────────────────────────────────────────────────────────────── +----------------------------------------------------------------------------------- Aggregate (cost=188.76..188.77 rows=1 width=8) -> Append (cost=0.00..181.05 rows=3085 width=0) -> 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 >= DATE '2008-01-01'; SET enable_partition_pruning = on; EXPLAIN SELECT count(*) FROM measurement WHERE logdate >= DATE '2008-01-01'; QUERY PLAN -─────────────────────────────────────────────────────────────────────────────────── +----------------------------------------------------------------------------------- Aggregate (cost=37.75..37.76 rows=1 width=8) -> Append (cost=0.00..36.21 rows=617 width=0) -> Seq Scan on measurement_y2008m01 (cost=0.00..33.12 rows=617 width=0) |