From 2912fd45d1f143cf00b8ac5d4c93d5e4ebf2b51e Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Thu, 20 Jun 2002 15:44:06 +0000 Subject: [PATCH] This patch updates the CREATE LANGUAGE & pg_language docs for the 7.3 table structure. Dave Page --- doc/src/sgml/catalogs.sgml | 14 +++++++++++- doc/src/sgml/ref/create_language.sgml | 32 ++++++++++++++------------- 2 files changed, 30 insertions(+), 16 deletions(-) diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml index 980c215536..c3ed19e4b2 100644 --- a/doc/src/sgml/catalogs.sgml +++ b/doc/src/sgml/catalogs.sgml @@ -1,6 +1,6 @@ @@ -1263,6 +1263,18 @@ + + lanvalidator + oid + pg_proc.oid + + This references a language validator function that is responsible + for checking the syntax and validity of new functions when they + are created. See under CREATE LANGUAGE for + further information about validators. + + + lancompiler text diff --git a/doc/src/sgml/ref/create_language.sgml b/doc/src/sgml/ref/create_language.sgml index 42d7c9b487..1871da57e5 100644 --- a/doc/src/sgml/ref/create_language.sgml +++ b/doc/src/sgml/ref/create_language.sgml @@ -1,5 +1,5 @@ @@ -214,25 +214,27 @@ ERROR: PL handler function funcname 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} - 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.