From: Peter Eisentraut Date: Tue, 14 Jan 2003 10:19:02 +0000 (+0000) Subject: Escape ampersand. X-Git-Tag: REL7_4_BETA1~1204 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=97f0d0c86f9db706d230704f4baa1a1e431df344;p=postgresql Escape ampersand. --- diff --git a/doc/src/sgml/indexcost.sgml b/doc/src/sgml/indexcost.sgml index 2e62280a8b..1211653edd 100644 --- a/doc/src/sgml/indexcost.sgml +++ b/doc/src/sgml/indexcost.sgml @@ -1,5 +1,5 @@ @@ -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;