Commit 92a26489 authored by Bruce Momjian's avatar Bruce Momjian

> Actually, if you submit a patch that says either "SCROLL is the

default"
> or "NO SCROLL is the default", it will be rejected as incorrect.  The
> reason is that the default behavior is different from either of these,
> as is explained in the NOTES section.

Ok, so *that's* where the bit about the query plan being simple enough.
Based on that, ISTM that it should be premissable for us to decide that
a cursor requiring a sort isn't "simple enough" to support SCROLL.

In any case, here's a patch that makes the non-standard behavior easier
for people to find.

Jim C. Nasby
parent 0bbd4704
<!-- <!--
$PostgreSQL: pgsql/doc/src/sgml/ref/declare.sgml,v 1.34 2006/01/18 06:49:26 neilc Exp $ $PostgreSQL: pgsql/doc/src/sgml/ref/declare.sgml,v 1.35 2006/02/12 19:02:15 momjian Exp $
PostgreSQL documentation PostgreSQL documentation
--> -->
...@@ -129,7 +129,9 @@ DECLARE <replaceable class="parameter">name</replaceable> [ BINARY ] [ INSENSITI ...@@ -129,7 +129,9 @@ DECLARE <replaceable class="parameter">name</replaceable> [ BINARY ] [ INSENSITI
execution plan, specifying <literal>SCROLL</literal> may impose execution plan, specifying <literal>SCROLL</literal> may impose
a performance penalty on the query's execution time. a performance penalty on the query's execution time.
<literal>NO SCROLL</literal> specifies that the cursor cannot be <literal>NO SCROLL</literal> specifies that the cursor cannot be
used to retrieve rows in a nonsequential fashion. used to retrieve rows in a nonsequential fashion. The default is to
allow scrolling, but this is not the same as specifying
<literal>SCROLL</literal>. See <xref linkend="notes"> for more details.
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>
...@@ -198,7 +200,7 @@ DECLARE <replaceable class="parameter">name</replaceable> [ BINARY ] [ INSENSITI ...@@ -198,7 +200,7 @@ DECLARE <replaceable class="parameter">name</replaceable> [ BINARY ] [ INSENSITI
</para> </para>
</refsect1> </refsect1>
<refsect1> <refsect1 id="notes">
<title>Notes</title> <title>Notes</title>
<para> <para>
......
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