1
1
.\" This is -*-nroff-*-
2
2
.\" XXX standard disclaimer belongs here....
3
- .\" $Header: /cvsroot/pgsql/src/man/Attic/create_language.l,v 1.2 1998/01/11 22: 17:14 momjian Exp $
3
+ .\" $Header: /cvsroot/pgsql/src/man/Attic/create_language.l,v 1.3 1998/06/23 17:52:31 momjian Exp $
4
4
.TH "CREATE LANGUAGE" SQL 11/05/95 PostgreSQL PostgreSQL
5
5
.SH "NAME"
6
6
create language - define a new language for functions
@@ -19,7 +19,7 @@ privilege to register a new language.
19
19
The lanname is the name of the new procedural language. It is converted
20
20
to lower case before the new entry in the pg_language system catalog
21
21
is inserted. Note that this case translation is also done on
22
- create function (l) and drop language (l). Thus, the language name
22
+ create_function (l) and drop_language (l). Thus, the language name
23
23
is case insensitive. A procedural language cannot override one of the
24
24
builtin languages of Postgres.
25
25
.PP
@@ -60,7 +60,7 @@ It's up to the call handler to fetch the pg_proc entry
60
60
and to analyze the argument and return types of the called procedure.
61
61
the
62
62
.IR " as"
63
- clause from the create function (l) of the procedure will be found in
63
+ clause from the create_function (l) of the procedure will be found in
64
64
the prosrc attribute of the pg_proc entry. This may be the source text
65
65
in the procedural language itself (like for PL/Tcl), a pathname to a
66
66
file or anything else that tells the call handler what to do in detail.
@@ -109,7 +109,7 @@ plsample_call_handler(
109
109
110
110
.fi
111
111
Only a few thousand lines of code have to be added instead of the dots
112
- to complete the PL call handler. See create function (l) how to compile
112
+ to complete the PL call handler. See create_function (l) how to compile
113
113
it into a loadable module. The following commands then register the
114
114
sample procedural language.
115
115
.nf
@@ -125,7 +125,7 @@ create procedural language 'plsample'
125
125
.fi
126
126
.SH "SEE ALSO"
127
127
.PP
128
- create function (l), drop language (l).
128
+ create_function (l), drop_language (l).
129
129
.SH "RESTRICTIONS"
130
130
Since the call handler for a procedural language must be
131
131
registered with Postgres in the 'C' language, it inherits
0 commit comments