aboutsummaryrefslogtreecommitdiff
path: root/doc/src/sgml/ref/create_function.sgml
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2002-07-24 19:11:14 +0000
committerPeter Eisentraut <peter_e@gmx.net>2002-07-24 19:11:14 +0000
commit739adf32eecfe129aea09f543370d886045c7c01 (patch)
tree57523329d5ef1c98f67755d000402273f366ea8c /doc/src/sgml/ref/create_function.sgml
parenta78777558cfac77563e74fc82edbe2089d7bbc11 (diff)
downloadpostgresql-739adf32eecfe129aea09f543370d886045c7c01.tar.gz
postgresql-739adf32eecfe129aea09f543370d886045c7c01.zip
Remove unused system table columns:
pg_language.lancompiler pg_operator.oprprec pg_operator.oprisleft pg_proc.proimplicit pg_proc.probyte_pct pg_proc.properbyte_cpu pg_proc.propercall_cpu pg_proc.prooutin_ratio pg_shadow.usetrace pg_type.typprtlen pg_type.typreceive pg_type.typsend Attempts to use the obsoleted attributes of pg_operator or pg_proc in the CREATE commands will be greeted by a warning. For pg_type, there is no warning (yet) because pg_dump scripts still contain these attributes. Also remove new but already obsolete spellings isVolatile, isStable, isImmutable in WITH clause. (Use new syntax instead.)
Diffstat (limited to 'doc/src/sgml/ref/create_function.sgml')
-rw-r--r--doc/src/sgml/ref/create_function.sgml9
1 files changed, 2 insertions, 7 deletions
diff --git a/doc/src/sgml/ref/create_function.sgml b/doc/src/sgml/ref/create_function.sgml
index e2170dcc45d..2c618140c85 100644
--- a/doc/src/sgml/ref/create_function.sgml
+++ b/doc/src/sgml/ref/create_function.sgml
@@ -1,5 +1,5 @@
<!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_function.sgml,v 1.40 2002/07/18 23:11:27 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_function.sgml,v 1.41 2002/07/24 19:11:07 petere Exp $
-->
<refentry id="SQL-CREATEFUNCTION">
@@ -257,16 +257,11 @@ CREATE [ OR REPLACE ] FUNCTION <replaceable class="parameter">name</replaceable>
</varlistentry>
<varlistentry>
- <term>isImmutable</term>
<term>isCachable</term>
- <term>isStable</term>
- <term>isVolatile</term>
<listitem>
<para>
- Equivalent to <literal>IMMUTABLE</literal>,
- <literal>STABLE</literal>, <literal>VOLATILE</literal>.
<literal>isCachable</literal> is an obsolete equivalent of
- <literal>isImmutable</literal>; it's still accepted for
+ <literal>IMMUTABLE</literal>; it's still accepted for
backwards-compatibility reasons.
</para>
</listitem>