PostgreSQL Source Code git master
Loading...
Searching...
No Matches
pg_proc.h
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * pg_proc.h
4 * definition of the "procedure" system catalog (pg_proc)
5 *
6 * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
7 * Portions Copyright (c) 1994, Regents of the University of California
8 *
9 * src/include/catalog/pg_proc.h
10 *
11 * NOTES
12 * The Catalog.pm module reads this file and derives schema
13 * information.
14 *
15 *-------------------------------------------------------------------------
16 */
17#ifndef PG_PROC_H
18#define PG_PROC_H
19
20#include "catalog/genbki.h"
22#include "catalog/pg_proc_d.h" /* IWYU pragma: export */
23#include "nodes/pg_list.h"
24
25/* ----------------
26 * pg_proc definition. cpp turns this into
27 * typedef struct FormData_pg_proc
28 * ----------------
29 */
31{
32 Oid oid; /* oid */
33
34 /* procedure name */
36
37 /* OID of namespace containing this proc */
39
40 /* procedure owner */
42
43 /* OID of pg_language entry */
45
46 /* estimated execution cost */
48
49 /* estimated # of rows out (if proretset) */
51
52 /* element type of variadic array, or 0 if not variadic */
54
55 /* planner support function for this function, or 0 if none */
57
58 /* see PROKIND_ categories below */
59 char prokind BKI_DEFAULT(f);
60
61 /* security definer */
62 bool prosecdef BKI_DEFAULT(f);
63
64 /* is it a leakproof function? */
66
67 /* strict with respect to NULLs? */
69
70 /* returns a set? */
71 bool proretset BKI_DEFAULT(f);
72
73 /* see PROVOLATILE_ categories below */
75
76 /* see PROPARALLEL_ categories below */
78
79 /* number of arguments */
80 /* Note: need not be given in pg_proc.dat; genbki.pl will compute it */
82
83 /* number of arguments with defaults */
85
86 /* OID of result type */
87 Oid prorettype BKI_LOOKUP(pg_type);
88
89 /*
90 * variable-length fields start here, but we allow direct access to
91 * proargtypes
92 */
93
94 /* parameter types (excludes OUT params) */
96
97#ifdef CATALOG_VARLEN
98
99 /* all param types (NULL if IN only) */
101
102 /* parameter modes (NULL if IN only) */
104
105 /* parameter names (NULL if no names) */
107
108 /* list of expression trees for argument defaults (NULL if none) */
110
111 /* types for which to apply transforms */
113
114 /* procedure source text */
116
117 /* secondary procedure info (can be NULL) */
119
120 /* pre-parsed SQL function body */
122
123 /* procedure-local GUC settings */
125
126 /* access permissions */
128#endif
130
131/* ----------------
132 * Form_pg_proc corresponds to a pointer to a tuple with
133 * the format of pg_proc relation.
134 * ----------------
135 */
137
139
142
145
146#ifdef EXPOSE_TO_CLIENT_CODE
147
148/*
149 * Symbolic values for prokind column
150 */
151#define PROKIND_FUNCTION 'f'
152#define PROKIND_AGGREGATE 'a'
153#define PROKIND_WINDOW 'w'
154#define PROKIND_PROCEDURE 'p'
155
156/*
157 * Symbolic values for provolatile column: these indicate whether the result
158 * of a function is dependent *only* on the values of its explicit arguments,
159 * or can change due to outside factors (such as parameter variables or
160 * table contents). NOTE: functions having side-effects, such as setval(),
161 * must be labeled volatile to ensure they will not get optimized away,
162 * even if the actual return value is not changeable.
163 */
164#define PROVOLATILE_IMMUTABLE 'i' /* never changes for given input */
165#define PROVOLATILE_STABLE 's' /* does not change within a scan */
166#define PROVOLATILE_VOLATILE 'v' /* can change even within a scan */
167
168/*
169 * Symbolic values for proparallel column: these indicate whether a function
170 * can be safely be run in a parallel backend, during parallelism but
171 * necessarily in the leader, or only in non-parallel mode.
172 */
173#define PROPARALLEL_SAFE 's' /* can run in worker or leader */
174#define PROPARALLEL_RESTRICTED 'r' /* can run in parallel leader only */
175#define PROPARALLEL_UNSAFE 'u' /* banned while in parallel mode */
176
177/*
178 * Symbolic values for proargmodes column. Note that these must agree with
179 * the FunctionParameterMode enum in parsenodes.h; we declare them here to
180 * be accessible from either header.
181 */
182#define PROARGMODE_IN 'i'
183#define PROARGMODE_OUT 'o'
184#define PROARGMODE_INOUT 'b'
185#define PROARGMODE_VARIADIC 'v'
186#define PROARGMODE_TABLE 't'
187
188#endif /* EXPOSE_TO_CLIENT_CODE */
189
190
193 bool replace,
194 bool returnsSet,
195 Oid returnType,
199 const char *prosrc,
200 const char *probin,
202 char prokind,
203 bool security_definer,
204 bool isLeakProof,
205 bool isStrict,
206 char volatility,
207 char parallel,
208 oidvector *parameterTypes,
213 Datum trftypes,
214 List *trfoids,
219
220extern bool function_parse_error_transpose(const char *prosrc);
221
222extern List *oid_array_to_list(Datum datum);
223
224#endif /* PG_PROC_H */
Oid regproc
Definition c.h:663
int16_t int16
Definition c.h:541
float float4
Definition c.h:643
#define DECLARE_UNIQUE_INDEX_PKEY(name, oid, oidmacro, tblname, decl)
Definition genbki.h:86
#define BKI_LOOKUP(catalog)
Definition genbki.h:46
#define BKI_DEFAULT(value)
Definition genbki.h:35
#define BKI_LOOKUP_OPT(catalog)
Definition genbki.h:47
#define DECLARE_UNIQUE_INDEX(name, oid, oidmacro, tblname, decl)
Definition genbki.h:85
#define BKI_FORCE_NOT_NULL
Definition genbki.h:33
#define DECLARE_TOAST(name, toastoid, indexoid)
Definition genbki.h:63
#define CATALOG(name, oid, oidmacro)
Definition genbki.h:23
#define BKI_BOOTSTRAP
Definition genbki.h:26
#define MAKE_SYSCACHE(name, idxname, nbuckets)
Definition genbki.h:127
#define BKI_ROWTYPE_OID(oid, oidmacro)
Definition genbki.h:28
int i
Definition isn.c:77
ObjectAddress ProcedureCreate(const char *procedureName, Oid procNamespace, bool replace, bool returnsSet, Oid returnType, Oid proowner, Oid languageObjectId, Oid languageValidator, const char *prosrc, const char *probin, Node *prosqlbody, char prokind, bool security_definer, bool isLeakProof, bool isStrict, char volatility, char parallel, oidvector *parameterTypes, Datum allParameterTypes, Datum parameterModes, Datum parameterNames, List *parameterDefaults, Datum trftypes, List *trfoids, Datum proconfig, Oid prosupport, float4 procost, float4 prorows)
Definition pg_proc.c:99
FormData_pg_proc * Form_pg_proc
Definition pg_proc.h:136
FormData_pg_proc
Definition pg_proc.h:129
List * oid_array_to_list(Datum datum)
Definition pg_proc.c:1230
int16 pronargs
Definition pg_proc.h:81
ProcedureRelation_Rowtype_Id BKI_SCHEMA_MACRO
Definition pg_proc.h:31
bool function_parse_error_transpose(const char *prosrc)
Definition pg_proc.c:1048
NameData proname
Definition pg_proc.h:35
uint64_t Datum
Definition postgres.h:70
unsigned int Oid
static int fb(int x)
Definition pg_list.h:54
Definition nodes.h:135
Definition c.h:760
Definition c.h:745
Definition c.h:706