diff options
author | Peter Eisentraut | 2003-01-14 10:19:02 +0000 |
---|---|---|
committer | Peter Eisentraut | 2003-01-14 10:19:02 +0000 |
commit | 97f0d0c86f9db706d230704f4baa1a1e431df344 (patch) | |
tree | af2704e2aa755c732a5d66f167c1f0ce1871c0bf | |
parent | 56e6436c3a8e11da50bc95ba5a10ec0d61dd0e4c (diff) |
Escape ampersand.
-rw-r--r-- | doc/src/sgml/indexcost.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/indexcost.sgml b/doc/src/sgml/indexcost.sgml index 2e62280a8be..1211653edd2 100644 --- a/doc/src/sgml/indexcost.sgml +++ b/doc/src/sgml/indexcost.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/Attic/indexcost.sgml,v 2.13 2003/01/12 22:35:29 tgl Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/Attic/indexcost.sgml,v 2.14 2003/01/14 10:19:02 petere Exp $ --> <chapter id="indexcost"> @@ -237,7 +237,7 @@ amcostestimate (Query *root, * Also, we charge for evaluation of the indexquals at each index tuple. * All the costs are assumed to be paid incrementally during the scan. */ - cost_qual_eval(&index_qual_cost, indexQuals); + cost_qual_eval(&index_qual_cost, indexQuals); *indexStartupCost = index_qual_cost.startup; *indexTotalCost = numIndexPages + (cpu_index_tuple_cost + index_qual_cost.per_tuple) * numIndexTuples; |