Commit 6efdd418 authored by Neil Conway's avatar Neil Conway

Fix two typos in the documentation for PREPARE.

parent fef0c834
<!-- <!--
$PostgreSQL: pgsql/doc/src/sgml/ref/prepare.sgml,v 1.9 2003/12/01 22:07:58 momjian Exp $ $PostgreSQL: pgsql/doc/src/sgml/ref/prepare.sgml,v 1.10 2003/12/14 00:55:46 neilc Exp $
PostgreSQL documentation PostgreSQL documentation
--> -->
...@@ -52,7 +52,7 @@ PREPARE <replaceable class="PARAMETER">plan_name</replaceable> [ (<replaceable c ...@@ -52,7 +52,7 @@ PREPARE <replaceable class="PARAMETER">plan_name</replaceable> [ (<replaceable c
</para> </para>
<para> <para>
Prepared statements are only for the duration of the current Prepared statements only last for the duration of the current
database session. When the session ends, the prepared statement is database session. When the session ends, the prepared statement is
forgotten, so it must be recreated before being used again. This forgotten, so it must be recreated before being used again. This
also means that a single prepared statement cannot be used by also means that a single prepared statement cannot be used by
...@@ -115,12 +115,12 @@ PREPARE <replaceable class="PARAMETER">plan_name</replaceable> [ (<replaceable c ...@@ -115,12 +115,12 @@ PREPARE <replaceable class="PARAMETER">plan_name</replaceable> [ (<replaceable c
<title>Notes</title> <title>Notes</title>
<para> <para>
In some situations, the query plan produced by for a prepared In some situations, the query plan produced for a prepared
statement may be inferior to the plan produced if the statement statement will be inferior to the query plan that would have been
were submitted and executed normally. This is because when the chosen if the statement had been submitted and executed
statement is planned and the planner attempts to determine the normally. This is because when the statement is planned and the
optimal query plan, the actual values of any parameters specified planner attempts to determine the optimal query plan, the actual
in the statement are values of any parameters specified in the statement are
unavailable. <productname>PostgreSQL</productname> collects unavailable. <productname>PostgreSQL</productname> collects
statistics on the distribution of data in the table, and can use statistics on the distribution of data in the table, and can use
constant values in a statement to make guesses about the likely constant values in a statement to make guesses about the likely
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment