summaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2011-03-05 15:34:10 -0500
committerTom Lane <tgl@sss.pgh.pa.us>2011-03-05 15:34:10 -0500
commit0b5d7345925dd0212d4509195a337f1912781af1 (patch)
tree70b99a8e2aa795aff56c0765c2b99f58ad7e69da /doc/src
parentbfd7f8cbb2ddf8c48ac310a80d33c951087c12c4 (diff)
Adjust documentation about pg_pltemplate to reflect latest thinking.
It's more likely that pg_pltemplate will go away in the future than that we'll add additional specialized infrastructure for it.
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/catalogs.sgml19
1 files changed, 10 insertions, 9 deletions
diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml
index b14fb72cab8..cc0cbe134c4 100644
--- a/doc/src/sgml/catalogs.sgml
+++ b/doc/src/sgml/catalogs.sgml
@@ -4211,7 +4211,7 @@
<row>
<entry><structfield>tmplacl</structfield></entry>
<entry><type>aclitem[]</type></entry>
- <entry>Access privileges for template (not yet used)</entry>
+ <entry>Access privileges for template (not actually used)</entry>
</row>
</tbody>
@@ -4222,16 +4222,17 @@
There are not currently any commands that manipulate procedural language
templates; to change the built-in information, a superuser must modify
the table using ordinary <command>INSERT</command>, <command>DELETE</command>,
- or <command>UPDATE</command> commands. It is likely that a future
- release of <productname>PostgreSQL</productname> will offer
- commands to change the entries in a cleaner fashion.
+ or <command>UPDATE</command> commands.
</para>
- <para>
- When implemented, the <structfield>tmplacl</structfield> field will provide
- access control for the template itself (i.e., the right to create a
- language using it), not for the languages created from the template.
- </para>
+ <note>
+ <para>
+ It is likely that <structname>pg_pltemplate</> will be removed in some
+ future release of <productname>PostgreSQL</productname>, in favor of
+ keeping this knowledge about procedural languages in their respective
+ extension installation scripts.
+ </para>
+ </note>
</sect1>