mirror of
https://github.com/postgres/postgres.git
synced 2025-07-09 22:41:56 +03:00
This patch updates the CREATE LANGUAGE & pg_language docs for the 7.3
table structure. Dave Page
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
<!--
|
||||
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_language.sgml,v 1.24 2002/05/22 17:20:58 petere Exp $
|
||||
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_language.sgml,v 1.25 2002/06/20 15:44:06 momjian Exp $
|
||||
PostgreSQL documentation
|
||||
-->
|
||||
|
||||
@ -214,25 +214,27 @@ ERROR: PL handler function <replaceable class="parameter">funcname</replaceable
|
||||
|
||||
<screen>
|
||||
Table "pg_language"
|
||||
Attribute | Type | Modifier
|
||||
---------------+---------+----------
|
||||
lanname | name |
|
||||
lanispl | boolean |
|
||||
lanpltrusted | boolean |
|
||||
lanplcallfoid | oid |
|
||||
lancompiler | text |
|
||||
Attribute | Type | Modifier
|
||||
---------------+-----------+----------
|
||||
lanname | name |
|
||||
lanispl | boolean |
|
||||
lanpltrusted | boolean |
|
||||
lanplcallfoid | oid |
|
||||
lanvalidator | oid |
|
||||
lancompiler | text |
|
||||
lanacl | aclitem[] |
|
||||
|
||||
lanname | lanispl | lanpltrusted | lanplcallfoid | lancompiler
|
||||
-------------+---------+--------------+---------------+-------------
|
||||
internal | f | f | 0 | n/a
|
||||
c | f | f | 0 | /bin/cc
|
||||
sql | f | t | 0 | postgres
|
||||
lanname | lanispl | lanpltrusted | lanplcallfoid | lanvalidator | lancompiler | lanacl
|
||||
-------------+---------+--------------+---------------+--------------+-------------+--------
|
||||
internal | f | f | 0 | 2246 | n/a |
|
||||
c | f | f | 0 | 2247 | /bin/cc |
|
||||
sql | f | t | 0 | 2248 | postgres | {=U}
|
||||
</screen>
|
||||
</para>
|
||||
|
||||
<para>
|
||||
At present, the definition of a procedural language cannot be
|
||||
changed once it has been created.
|
||||
At present, with the exception of the permissions, the definition
|
||||
of a procedural language cannot be changed once it has been created.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
|
Reference in New Issue
Block a user