Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
2912fd45
Commit
2912fd45
authored
22 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
This patch updates the CREATE LANGUAGE & pg_language docs for the 7.3
table structure. Dave Page
parent
bad59c29
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/src/sgml/catalogs.sgml
+13
-1
13 additions, 1 deletion
doc/src/sgml/catalogs.sgml
doc/src/sgml/ref/create_language.sgml
+18
-16
18 additions, 16 deletions
doc/src/sgml/ref/create_language.sgml
with
31 additions
and
17 deletions
doc/src/sgml/catalogs.sgml
+
13
−
1
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/0
4
/2
1 00:26:42 tgl
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/catalogs.sgml,v 2.4
4
2002/0
6
/2
0 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>
...
...
This diff is collapsed.
Click to expand it.
doc/src/sgml/ref/create_language.sgml
+
18
−
16
View file @
2912fd45
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_language.sgml,v 1.2
4
2002/0
5
/2
2
1
7:20:58 petere
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_language.sgml,v 1.2
5
2002/0
6
/2
0
1
5: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>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment