diff options
author | Robert Haas <rhaas@postgresql.org> | 2025-03-07 09:00:53 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2025-03-07 09:00:53 -0500 |
commit | d3fc7a51208b3f4f2be2476d44aa2542f52879de (patch) | |
tree | 3f4e9a3473a8341035036246f864f96f600faa3e /doc/src | |
parent | 7f24c0274385ea3d4c797cc2fd60d9a55f3a8d74 (diff) | |
download | postgresql-d3fc7a51208b3f4f2be2476d44aa2542f52879de.tar.gz postgresql-d3fc7a51208b3f4f2be2476d44aa2542f52879de.zip |
doc: Add missing decimal places to example rowcount.
Commit 95dbd827f2edc4d10bebd7e840a0bd6782cf69b7 updated a bunch
of similar cases in the documentation, but missed this one.
Author: Ilia Evdokimov <ilya.evdokimov@tantorlabs.com>
Reviewed-by: FabrÃzio de Royes Mello <fabriziomello@gmail.com>
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/perform.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/perform.sgml b/doc/src/sgml/perform.sgml index be4b49f62b5..91feb59abd1 100644 --- a/doc/src/sgml/perform.sgml +++ b/doc/src/sgml/perform.sgml @@ -730,7 +730,7 @@ WHERE t1.unique1 < 10 AND t1.unique2 = t2.unique2; -> Bitmap Index Scan on tenk1_unique1 (cost=0.00..4.36 rows=10 width=0) (actual time=0.004..0.004 rows=10.00 loops=1) Index Cond: (unique1 < 10) Buffers: shared hit=2 - -> Index Scan using tenk2_unique2 on tenk2 t2 (cost=0.29..7.90 rows=1 width=244) (actual time=0.003..0.003 rows=1 loops=10) + -> Index Scan using tenk2_unique2 on tenk2 t2 (cost=0.29..7.90 rows=1 width=244) (actual time=0.003..0.003 rows=1.00 loops=10) Index Cond: (unique2 = t1.unique2) Buffers: shared hit=24 read=6 Planning: |