~ubuntu-branches/ubuntu/oneiric/postgresql-9.1/oneiric-security

« back to all changes in this revision

Viewing changes to doc/src/sgml/man7/CREATE_FUNCTION.7

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2011-05-11 10:41:53 UTC
  • Revision ID: james.westby@ubuntu.com-20110511104153-psbh2o58553fv1m0
Tags: upstream-9.1~beta1
ImportĀ upstreamĀ versionĀ 9.1~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
'\" t
 
2
.\"     Title: CREATE FUNCTION
 
3
.\"    Author: The PostgreSQL Global Development Group
 
4
.\" Generator: DocBook XSL Stylesheets v1.75.1 <http://docbook.sf.net/>
 
5
.\"      Date: 2011-04-27
 
6
.\"    Manual: PostgreSQL 9.1beta1 Documentation
 
7
.\"    Source: PostgreSQL 9.1beta1
 
8
.\"  Language: English
 
9
.\"
 
10
.TH "CREATE FUNCTION" "7" "2011-04-27" "PostgreSQL 9.1beta1" "PostgreSQL 9.1beta1 Documentation"
 
11
.\" -----------------------------------------------------------------
 
12
.\" * set default formatting
 
13
.\" -----------------------------------------------------------------
 
14
.\" disable hyphenation
 
15
.nh
 
16
.\" disable justification (adjust text to left margin only)
 
17
.ad l
 
18
.\" -----------------------------------------------------------------
 
19
.\" * MAIN CONTENT STARTS HERE *
 
20
.\" -----------------------------------------------------------------
 
21
.SH "NAME"
 
22
CREATE_FUNCTION \- define a new function
 
23
.\" CREATE FUNCTION
 
24
.SH "SYNOPSIS"
 
25
.sp
 
26
.nf
 
27
CREATE [ OR REPLACE ] FUNCTION
 
28
    \fIname\fR ( [ [ \fIargmode\fR ] [ \fIargname\fR ] \fIargtype\fR [ { DEFAULT | = } \fIdefault_expr\fR ] [, \&.\&.\&.] ] )
 
29
    [ RETURNS \fIrettype\fR
 
30
      | RETURNS TABLE ( \fIcolumn_name\fR \fIcolumn_type\fR [, \&.\&.\&.] ) ]
 
31
  { LANGUAGE \fIlang_name\fR
 
32
    | WINDOW
 
33
    | IMMUTABLE | STABLE | VOLATILE
 
34
    | CALLED ON NULL INPUT | RETURNS NULL ON NULL INPUT | STRICT
 
35
    | [ EXTERNAL ] SECURITY INVOKER | [ EXTERNAL ] SECURITY DEFINER
 
36
    | COST \fIexecution_cost\fR
 
37
    | ROWS \fIresult_rows\fR
 
38
    | SET \fIconfiguration_parameter\fR { TO \fIvalue\fR | = \fIvalue\fR | FROM CURRENT }
 
39
    | AS \(aq\fIdefinition\fR\(aq
 
40
    | AS \(aq\fIobj_file\fR\(aq, \(aq\fIlink_symbol\fR\(aq
 
41
  } \&.\&.\&.
 
42
    [ WITH ( \fIattribute\fR [, \&.\&.\&.] ) ]
 
43
.fi
 
44
.SH "DESCRIPTION"
 
45
.PP
 
46
CREATE FUNCTION
 
47
defines a new function\&.
 
48
CREATE OR REPLACE FUNCTION
 
49
will either create a new function, or replace an existing definition\&. To be able to define a function, the user must have the
 
50
USAGE
 
51
privilege on the language\&.
 
52
.PP
 
53
If a schema name is included, then the function is created in the specified schema\&. Otherwise it is created in the current schema\&. The name of the new function must not match any existing function with the same input argument types in the same schema\&. However, functions of different argument types can share a name (this is called
 
54
overloading)\&.
 
55
.PP
 
56
To replace the current definition of an existing function, use
 
57
CREATE OR REPLACE FUNCTION\&. It is not possible to change the name or argument types of a function this way (if you tried, you would actually be creating a new, distinct function)\&. Also,
 
58
CREATE OR REPLACE FUNCTION
 
59
will not let you change the return type of an existing function\&. To do that, you must drop and recreate the function\&. (When using
 
60
OUT
 
61
parameters, that means you cannot change the types of any
 
62
OUT
 
63
parameters except by dropping the function\&.)
 
64
.PP
 
65
When
 
66
CREATE OR REPLACE FUNCTION
 
67
is used to replace an existing function, the ownership and permissions of the function do not change\&. All other function properties are assigned the values specified or implied in the command\&. You must own the function to replace it (this includes being a member of the owning role)\&.
 
68
.PP
 
69
If you drop and then recreate a function, the new function is not the same entity as the old; you will have to drop existing rules, views, triggers, etc\&. that refer to the old function\&. Use
 
70
CREATE OR REPLACE FUNCTION
 
71
to change a function definition without breaking objects that refer to the function\&. Also,
 
72
ALTER FUNCTION
 
73
can be used to change most of the auxiliary properties of an existing function\&.
 
74
.PP
 
75
The user that creates the function becomes the owner of the function\&.
 
76
.SH "PARAMETERS"
 
77
.PP
 
78
\fIname\fR
 
79
.RS 4
 
80
The name (optionally schema\-qualified) of the function to create\&.
 
81
.RE
 
82
.PP
 
83
\fIargmode\fR
 
84
.RS 4
 
85
The mode of an argument:
 
86
IN,
 
87
OUT,
 
88
INOUT, or
 
89
VARIADIC\&. If omitted, the default is
 
90
IN\&. Only
 
91
OUT
 
92
arguments can follow a
 
93
VARIADIC
 
94
one\&. Also,
 
95
OUT
 
96
and
 
97
INOUT
 
98
arguments cannot be used together with the
 
99
RETURNS TABLE
 
100
notation\&.
 
101
.RE
 
102
.PP
 
103
\fIargname\fR
 
104
.RS 4
 
105
The name of an argument\&. Some languages (currently only PL/pgSQL) let you use the name in the function body\&. For other languages the name of an input argument is just extra documentation, so far as the function itself is concerned; but you can use input argument names when calling a function to improve readability (see
 
106
Section 4.3, \(lqCalling Functions\(rq, in the documentation)\&. In any case, the name of an output argument is significant, because it defines the column name in the result row type\&. (If you omit the name for an output argument, the system will choose a default column name\&.)
 
107
.RE
 
108
.PP
 
109
\fIargtype\fR
 
110
.RS 4
 
111
The data type(s) of the function\(aqs arguments (optionally schema\-qualified), if any\&. The argument types can be base, composite, or domain types, or can reference the type of a table column\&.
 
112
.sp
 
113
Depending on the implementation language it might also be allowed to specify
 
114
\(lqpseudotypes\(rq
 
115
such as
 
116
cstring\&. Pseudotypes indicate that the actual argument type is either incompletely specified, or outside the set of ordinary SQL data types\&.
 
117
.sp
 
118
The type of a column is referenced by writing
 
119
\fItable_name\fR\&.\fIcolumn_name\fR%TYPE\&. Using this feature can sometimes help make a function independent of changes to the definition of a table\&.
 
120
.RE
 
121
.PP
 
122
\fIdefault_expr\fR
 
123
.RS 4
 
124
An expression to be used as default value if the parameter is not specified\&. The expression has to be coercible to the argument type of the parameter\&. Only input (including
 
125
INOUT) parameters can have a default value\&. All input parameters following a parameter with a default value must have default values as well\&.
 
126
.RE
 
127
.PP
 
128
\fIrettype\fR
 
129
.RS 4
 
130
The return data type (optionally schema\-qualified)\&. The return type can be a base, composite, or domain type, or can reference the type of a table column\&. Depending on the implementation language it might also be allowed to specify
 
131
\(lqpseudotypes\(rq
 
132
such as
 
133
cstring\&. If the function is not supposed to return a value, specify
 
134
void
 
135
as the return type\&.
 
136
.sp
 
137
When there are
 
138
OUT
 
139
or
 
140
INOUT
 
141
parameters, the
 
142
RETURNS
 
143
clause can be omitted\&. If present, it must agree with the result type implied by the output parameters:
 
144
RECORD
 
145
if there are multiple output parameters, or the same type as the single output parameter\&.
 
146
.sp
 
147
The
 
148
SETOF
 
149
modifier indicates that the function will return a set of items, rather than a single item\&.
 
150
.sp
 
151
The type of a column is referenced by writing
 
152
\fItable_name\fR\&.\fIcolumn_name\fR%TYPE\&.
 
153
.RE
 
154
.PP
 
155
\fIcolumn_name\fR
 
156
.RS 4
 
157
The name of an output column in the
 
158
RETURNS TABLE
 
159
syntax\&. This is effectively another way of declaring a named
 
160
OUT
 
161
parameter, except that
 
162
RETURNS TABLE
 
163
also implies
 
164
RETURNS SETOF\&.
 
165
.RE
 
166
.PP
 
167
\fIcolumn_type\fR
 
168
.RS 4
 
169
The data type of an output column in the
 
170
RETURNS TABLE
 
171
syntax\&.
 
172
.RE
 
173
.PP
 
174
\fIlang_name\fR
 
175
.RS 4
 
176
The name of the language that the function is implemented in\&. Can be
 
177
SQL,
 
178
C,
 
179
internal, or the name of a user\-defined procedural language\&. For backward compatibility, the name can be enclosed by single quotes\&.
 
180
.RE
 
181
.PP
 
182
WINDOW
 
183
.RS 4
 
184
WINDOW
 
185
indicates that the function is a
 
186
window function
 
187
rather than a plain function\&. This is currently only useful for functions written in C\&. The
 
188
WINDOW
 
189
attribute cannot be changed when replacing an existing function definition\&.
 
190
.RE
 
191
.PP
 
192
IMMUTABLE, STABLE, VOLATILE
 
193
.RS 4
 
194
These attributes inform the query optimizer about the behavior of the function\&. At most one choice can be specified\&. If none of these appear,
 
195
VOLATILE
 
196
is the default assumption\&.
 
197
.sp
 
198
IMMUTABLE
 
199
indicates that the function cannot modify the database and always returns the same result when given the same argument values; that is, it does not do database lookups or otherwise use information not directly present in its argument list\&. If this option is given, any call of the function with all\-constant arguments can be immediately replaced with the function value\&.
 
200
.sp
 
201
STABLE
 
202
indicates that the function cannot modify the database, and that within a single table scan it will consistently return the same result for the same argument values, but that its result could change across SQL statements\&. This is the appropriate selection for functions whose results depend on database lookups, parameter variables (such as the current time zone), etc\&. (It is inappropriate for
 
203
AFTER
 
204
triggers that wish to query rows modified by the current command\&.) Also note that the
 
205
\fBcurrent_timestamp\fR
 
206
family of functions qualify as stable, since their values do not change within a transaction\&.
 
207
.sp
 
208
VOLATILE
 
209
indicates that the function value can change even within a single table scan, so no optimizations can be made\&. Relatively few database functions are volatile in this sense; some examples are
 
210
random(),
 
211
currval(),
 
212
timeofday()\&. But note that any function that has side\-effects must be classified volatile, even if its result is quite predictable, to prevent calls from being optimized away; an example is
 
213
setval()\&.
 
214
.sp
 
215
For additional details see
 
216
Section 35.6, \(lqFunction Volatility Categories\(rq, in the documentation\&.
 
217
.RE
 
218
.PP
 
219
CALLED ON NULL INPUT, RETURNS NULL ON NULL INPUT, STRICT
 
220
.RS 4
 
221
CALLED ON NULL INPUT
 
222
(the default) indicates that the function will be called normally when some of its arguments are null\&. It is then the function author\(aqs responsibility to check for null values if necessary and respond appropriately\&.
 
223
.sp
 
224
RETURNS NULL ON NULL INPUT
 
225
or
 
226
STRICT
 
227
indicates that the function always returns null whenever any of its arguments are null\&. If this parameter is specified, the function is not executed when there are null arguments; instead a null result is assumed automatically\&.
 
228
.RE
 
229
.PP
 
230
[EXTERNAL] SECURITY INVOKER, [EXTERNAL] SECURITY DEFINER
 
231
.RS 4
 
232
SECURITY INVOKER
 
233
indicates that the function is to be executed with the privileges of the user that calls it\&. That is the default\&.
 
234
SECURITY DEFINER
 
235
specifies that the function is to be executed with the privileges of the user that created it\&.
 
236
.sp
 
237
The key word
 
238
EXTERNAL
 
239
is allowed for SQL conformance, but it is optional since, unlike in SQL, this feature applies to all functions not only external ones\&.
 
240
.RE
 
241
.PP
 
242
\fIexecution_cost\fR
 
243
.RS 4
 
244
A positive number giving the estimated execution cost for the function, in units of
 
245
cpu_operator_cost\&. If the function returns a set, this is the cost per returned row\&. If the cost is not specified, 1 unit is assumed for C\-language and internal functions, and 100 units for functions in all other languages\&. Larger values cause the planner to try to avoid evaluating the function more often than necessary\&.
 
246
.RE
 
247
.PP
 
248
\fIresult_rows\fR
 
249
.RS 4
 
250
A positive number giving the estimated number of rows that the planner should expect the function to return\&. This is only allowed when the function is declared to return a set\&. The default assumption is 1000 rows\&.
 
251
.RE
 
252
.PP
 
253
\fIconfiguration_parameter\fR, \fIvalue\fR
 
254
.RS 4
 
255
The
 
256
SET
 
257
clause causes the specified configuration parameter to be set to the specified value when the function is entered, and then restored to its prior value when the function exits\&.
 
258
SET FROM CURRENT
 
259
saves the session\(aqs current value of the parameter as the value to be applied when the function is entered\&.
 
260
.sp
 
261
If a
 
262
SET
 
263
clause is attached to a function, then the effects of a
 
264
SET LOCAL
 
265
command executed inside the function for the same variable are restricted to the function: the configuration parameter\(aqs prior value is still restored at function exit\&. However, an ordinary
 
266
SET
 
267
command (without
 
268
LOCAL) overrides the
 
269
SET
 
270
clause, much as it would do for a previous
 
271
SET LOCAL
 
272
command: the effects of such a command will persist after function exit, unless the current transaction is rolled back\&.
 
273
.sp
 
274
See
 
275
\fBSET\fR(7)
 
276
and
 
277
Chapter 18, Server Configuration, in the documentation
 
278
for more information about allowed parameter names and values\&.
 
279
.RE
 
280
.PP
 
281
\fIdefinition\fR
 
282
.RS 4
 
283
A string constant defining the function; the meaning depends on the language\&. It can be an internal function name, the path to an object file, an SQL command, or text in a procedural language\&.
 
284
.sp
 
285
It is often helpful to use dollar quoting (see
 
286
Section 4.1.2.4, \(lqDollar-quoted String Constants\(rq, in the documentation) to write the function definition string, rather than the normal single quote syntax\&. Without dollar quoting, any single quotes or backslashes in the function definition must be escaped by doubling them\&.
 
287
.RE
 
288
.PP
 
289
\fIobj_file\fR, \fIlink_symbol\fR
 
290
.RS 4
 
291
This form of the
 
292
AS
 
293
clause is used for dynamically loadable C language functions when the function name in the C language source code is not the same as the name of the SQL function\&. The string
 
294
\fIobj_file\fR
 
295
is the name of the file containing the dynamically loadable object, and
 
296
\fIlink_symbol\fR
 
297
is the function\(aqs link symbol, that is, the name of the function in the C language source code\&. If the link symbol is omitted, it is assumed to be the same as the name of the SQL function being defined\&.
 
298
.sp
 
299
When repeated
 
300
CREATE FUNCTION
 
301
calls refer to the same object file, the file is only loaded once per session\&. To unload and reload the file (perhaps during development), start a new session\&.
 
302
.RE
 
303
.PP
 
304
\fIattribute\fR
 
305
.RS 4
 
306
The historical way to specify optional pieces of information about the function\&. The following attributes can appear here:
 
307
.PP
 
308
isStrict
 
309
.RS 4
 
310
Equivalent to
 
311
STRICT
 
312
or
 
313
RETURNS NULL ON NULL INPUT\&.
 
314
.RE
 
315
.PP
 
316
isCachable
 
317
.RS 4
 
318
isCachable
 
319
is an obsolete equivalent of
 
320
IMMUTABLE; it\(aqs still accepted for backwards\-compatibility reasons\&.
 
321
.RE
 
322
.sp
 
323
Attribute names are not case\-sensitive\&.
 
324
.RE
 
325
.PP
 
326
Refer to
 
327
Section 35.3, \(lqUser-defined Functions\(rq, in the documentation
 
328
for further information on writing functions\&.
 
329
.SH "OVERLOADING"
 
330
.PP
 
331
PostgreSQL
 
332
allows function
 
333
overloading; that is, the same name can be used for several different functions so long as they have distinct input argument types\&. However, the C names of all functions must be different, so you must give overloaded C functions different C names (for example, use the argument types as part of the C names)\&.
 
334
.PP
 
335
Two functions are considered the same if they have the same names and
 
336
\fIinput\fR
 
337
argument types, ignoring any
 
338
OUT
 
339
parameters\&. Thus for example these declarations conflict:
 
340
.sp
 
341
.if n \{\
 
342
.RS 4
 
343
.\}
 
344
.nf
 
345
CREATE FUNCTION foo(int) \&.\&.\&.
 
346
CREATE FUNCTION foo(int, out text) \&.\&.\&.
 
347
.fi
 
348
.if n \{\
 
349
.RE
 
350
.\}
 
351
.PP
 
352
Functions that have different argument type lists will not be considered to conflict at creation time, but if defaults are provided they might conflict in use\&. For example, consider
 
353
.sp
 
354
.if n \{\
 
355
.RS 4
 
356
.\}
 
357
.nf
 
358
CREATE FUNCTION foo(int) \&.\&.\&.
 
359
CREATE FUNCTION foo(int, int default 42) \&.\&.\&.
 
360
.fi
 
361
.if n \{\
 
362
.RE
 
363
.\}
 
364
.sp
 
365
A call
 
366
foo(10)
 
367
will fail due to the ambiguity about which function should be called\&.
 
368
.SH "NOTES"
 
369
.PP
 
370
The full
 
371
SQL
 
372
type syntax is allowed for input arguments and return value\&. However, some details of the type specification (e\&.g\&., the precision field for type
 
373
numeric) are the responsibility of the underlying function implementation and are silently swallowed (i\&.e\&., not recognized or enforced) by the
 
374
CREATE FUNCTION
 
375
command\&.
 
376
.PP
 
377
When replacing an existing function with
 
378
CREATE OR REPLACE FUNCTION, there are restrictions on changing parameter names\&. You cannot change the name already assigned to any input parameter (although you can add names to parameters that had none before)\&. If there is more than one output parameter, you cannot change the names of the output parameters, because that would change the column names of the anonymous composite type that describes the function\(aqs result\&. These restrictions are made to ensure that existing calls of the function do not stop working when it is replaced\&.
 
379
.PP
 
380
If a function is declared
 
381
STRICT
 
382
with a
 
383
VARIADIC
 
384
argument, the strictness check tests that the variadic array
 
385
\fIas a whole\fR
 
386
is non\-null\&. The function will still be called if the array has null elements\&.
 
387
.SH "EXAMPLES"
 
388
.PP
 
389
Here are some trivial examples to help you get started\&. For more information and examples, see
 
390
Section 35.3, \(lqUser-defined Functions\(rq, in the documentation\&.
 
391
.sp
 
392
.if n \{\
 
393
.RS 4
 
394
.\}
 
395
.nf
 
396
CREATE FUNCTION add(integer, integer) RETURNS integer
 
397
    AS \(aqselect $1 + $2;\(aq
 
398
    LANGUAGE SQL
 
399
    IMMUTABLE
 
400
    RETURNS NULL ON NULL INPUT;
 
401
.fi
 
402
.if n \{\
 
403
.RE
 
404
.\}
 
405
.PP
 
406
Increment an integer, making use of an argument name, in
 
407
PL/pgSQL:
 
408
.sp
 
409
.if n \{\
 
410
.RS 4
 
411
.\}
 
412
.nf
 
413
CREATE OR REPLACE FUNCTION increment(i integer) RETURNS integer AS $$
 
414
        BEGIN
 
415
                RETURN i + 1;
 
416
        END;
 
417
$$ LANGUAGE plpgsql;
 
418
.fi
 
419
.if n \{\
 
420
.RE
 
421
.\}
 
422
.PP
 
423
Return a record containing multiple output parameters:
 
424
.sp
 
425
.if n \{\
 
426
.RS 4
 
427
.\}
 
428
.nf
 
429
CREATE FUNCTION dup(in int, out f1 int, out f2 text)
 
430
    AS $$ SELECT $1, CAST($1 AS text) || \(aq is text\(aq $$
 
431
    LANGUAGE SQL;
 
432
 
 
433
SELECT * FROM dup(42);
 
434
.fi
 
435
.if n \{\
 
436
.RE
 
437
.\}
 
438
.sp
 
439
You can do the same thing more verbosely with an explicitly named composite type:
 
440
.sp
 
441
.if n \{\
 
442
.RS 4
 
443
.\}
 
444
.nf
 
445
CREATE TYPE dup_result AS (f1 int, f2 text);
 
446
 
 
447
CREATE FUNCTION dup(int) RETURNS dup_result
 
448
    AS $$ SELECT $1, CAST($1 AS text) || \(aq is text\(aq $$
 
449
    LANGUAGE SQL;
 
450
 
 
451
SELECT * FROM dup(42);
 
452
.fi
 
453
.if n \{\
 
454
.RE
 
455
.\}
 
456
.sp
 
457
Another way to return multiple columns is to use a
 
458
TABLE
 
459
function:
 
460
.sp
 
461
.if n \{\
 
462
.RS 4
 
463
.\}
 
464
.nf
 
465
CREATE FUNCTION dup(int) RETURNS TABLE(f1 int, f2 text)
 
466
    AS $$ SELECT $1, CAST($1 AS text) || \(aq is text\(aq $$
 
467
    LANGUAGE SQL;
 
468
 
 
469
SELECT * FROM dup(42);
 
470
.fi
 
471
.if n \{\
 
472
.RE
 
473
.\}
 
474
.sp
 
475
However, a
 
476
TABLE
 
477
function is different from the preceding examples, because it actually returns a
 
478
\fIset\fR
 
479
of records, not just one record\&.
 
480
.SH "WRITING SECURITY DEFINER FUNCTIONS SAFELY"
 
481
.PP
 
482
Because a
 
483
SECURITY DEFINER
 
484
function is executed with the privileges of the user that created it, care is needed to ensure that the function cannot be misused\&. For security,
 
485
search_path
 
486
should be set to exclude any schemas writable by untrusted users\&. This prevents malicious users from creating objects that mask objects used by the function\&. Particularly important in this regard is the temporary\-table schema, which is searched first by default, and is normally writable by anyone\&. A secure arrangement can be had by forcing the temporary schema to be searched last\&. To do this, write
 
487
pg_temp
 
488
as the last entry in
 
489
\fIsearch_path\fR\&. This function illustrates safe usage:
 
490
.sp
 
491
.if n \{\
 
492
.RS 4
 
493
.\}
 
494
.nf
 
495
CREATE FUNCTION check_password(uname TEXT, pass TEXT)
 
496
RETURNS BOOLEAN AS $$
 
497
DECLARE passed BOOLEAN;
 
498
BEGIN
 
499
        SELECT  (pwd = $2) INTO passed
 
500
        FROM    pwds
 
501
        WHERE   username = $1;
 
502
 
 
503
        RETURN passed;
 
504
END;
 
505
$$  LANGUAGE plpgsql
 
506
    SECURITY DEFINER
 
507
    \-\- Set a secure search_path: trusted schema(s), then \(aqpg_temp\(aq\&.
 
508
    SET search_path = admin, pg_temp;
 
509
.fi
 
510
.if n \{\
 
511
.RE
 
512
.\}
 
513
.PP
 
514
Before
 
515
PostgreSQL
 
516
version 8\&.3, the
 
517
SET
 
518
option was not available, and so older functions may contain rather complicated logic to save, set, and restore
 
519
\fIsearch_path\fR\&. The
 
520
SET
 
521
option is far easier to use for this purpose\&.
 
522
.PP
 
523
Another point to keep in mind is that by default, execute privilege is granted to
 
524
PUBLIC
 
525
for newly created functions (see
 
526
\fBGRANT\fR(7)
 
527
for more information)\&. Frequently you will wish to restrict use of a security definer function to only some users\&. To do that, you must revoke the default
 
528
PUBLIC
 
529
privileges and then grant execute privilege selectively\&. To avoid having a window where the new function is accessible to all, create it and set the privileges within a single transaction\&. For example:
 
530
.sp
 
531
.if n \{\
 
532
.RS 4
 
533
.\}
 
534
.nf
 
535
BEGIN;
 
536
CREATE FUNCTION check_password(uname TEXT, pass TEXT) \&.\&.\&. SECURITY DEFINER;
 
537
REVOKE ALL ON FUNCTION check_password(uname TEXT, pass TEXT) FROM PUBLIC;
 
538
GRANT EXECUTE ON FUNCTION check_password(uname TEXT, pass TEXT) TO admins;
 
539
COMMIT;
 
540
.fi
 
541
.if n \{\
 
542
.RE
 
543
.\}
 
544
.SH "COMPATIBILITY"
 
545
.PP
 
546
A
 
547
CREATE FUNCTION
 
548
command is defined in SQL:1999 and later\&. The
 
549
PostgreSQL
 
550
version is similar but not fully compatible\&. The attributes are not portable, neither are the different available languages\&.
 
551
.PP
 
552
For compatibility with some other database systems,
 
553
\fIargmode\fR
 
554
can be written either before or after
 
555
\fIargname\fR\&. But only the first way is standard\-compliant\&.
 
556
.PP
 
557
The SQL standard does not specify parameter defaults\&. The syntax with the
 
558
DEFAULT
 
559
key word is from Oracle, and it is somewhat in the spirit of the standard: SQL/PSM uses it for variable default values\&. The syntax with
 
560
=
 
561
is used in T\-SQL and Firebird\&.
 
562
.SH "SEE ALSO"
 
563
ALTER FUNCTION (\fBALTER_FUNCTION\fR(7)), DROP FUNCTION (\fBDROP_FUNCTION\fR(7)), \fBGRANT\fR(7), \fBLOAD\fR(7), \fBREVOKE\fR(7), \fBcreatelang\fR(1)