Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
2912fd45
Commit
2912fd45
authored
Jun 20, 2002
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
This patch updates the CREATE LANGUAGE & pg_language docs for the 7.3
table structure. Dave Page
parent
bad59c29
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
17 deletions
+31
-17
doc/src/sgml/catalogs.sgml
doc/src/sgml/catalogs.sgml
+13
-1
doc/src/sgml/ref/create_language.sgml
doc/src/sgml/ref/create_language.sgml
+18
-16
No files found.
doc/src/sgml/catalogs.sgml
View file @
2912fd45
<!--
Documentation of the system catalogs, directed toward PostgreSQL developers
$Header: /cvsroot/pgsql/doc/src/sgml/catalogs.sgml,v 2.4
3 2002/04/21 00:26:42 tgl
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/catalogs.sgml,v 2.4
4 2002/06/20 15:44:06 momjian
Exp $
-->
<chapter id="catalogs">
...
...
@@ -1263,6 +1263,18 @@
</entry>
</row>
<row>
<entry>lanvalidator</entry>
<entry><type>oid</type></entry>
<entry>pg_proc.oid</entry>
<entry>
This references a language validator function that is responsible
for checking the syntax and validity of new functions when they
are created. See under <command>CREATE LANGUAGE</command> for
further information about validators.
</entry>
</row>
<row>
<entry>lancompiler</entry>
<entry><type>text</type></entry>
...
...
doc/src/sgml/ref/create_language.sgml
View file @
2912fd45
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_language.sgml,v 1.2
4 2002/05/22 17:20:58 petere
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_language.sgml,v 1.2
5 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 |
lanname | lanispl | lanpltrusted | lanplcallfoid | lancompiler
-------------+---------+--------------+---------------+-------------
internal | f | f | 0 | n/a
c | f | f | 0 | /bin/cc
sql | f | t | 0 | postgres
Attribute | Type | Modifier
---------------+-----------+----------
lanname | name |
lanispl | boolean |
lanpltrusted | boolean |
lanplcallfoid | oid |
lanvalidator | oid |
lancompiler | text |
lanacl | aclitem[] |
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>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment