projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
70fba70
)
Fix typo 233 pages -> 333 pages.
author
Bruce Momjian
Mon, 27 Jan 2003 22:40:56 +0000
(22:40 +0000)
committer
Bruce Momjian
Mon, 27 Jan 2003 22:40:56 +0000
(22:40 +0000)
doc/src/sgml/perform.sgml
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/perform.sgml
b/doc/src/sgml/perform.sgml
index 6928f1d853e08ab0ab4af965b6c8afa44f6ce7d9..2e42d020e420fe596ddcd7ad8c120e40863d7993 100644
(file)
--- a/
doc/src/sgml/perform.sgml
+++ b/
doc/src/sgml/perform.sgml
@@
-1,5
+1,5
@@
@@
-109,8
+109,8
@@
regression=# EXPLAIN SELECT * FROM tenk1;
SELECT * FROM pg_class WHERE relname = 'tenk1';
- you will find out that
tenk1
has
2
33 disk
- pages and 10000 rows. So the cost is estimated at
2
33 page
+ you will find out that
tenk1
has
3
33 disk
+ pages and 10000 rows. So the cost is estimated at
3
33 page
reads, defined as costing 1.0 apiece, plus 10000 *
cpu_tuple_cost
which is
currently 0.01 (try
SHOW cpu_tuple_cost
).