52.39. pg_proc
版本:11
The catalog pg_proc
stores information about functions, procedures, aggregate functions, and window functions (collectively also known as routines). See CREATE FUNCTION, CREATE PROCEDURE, and Section 38.3 for more information.
If prokind
indicates that the entry is for an aggregate function, there should be a matching row in pg_aggregate
.
Table 52.39. pg_proc
Columns
For compiled functions, both built-in and dynamically loaded, prosrc
contains the function's C-language name (link symbol). For all other currently-known language types, prosrc
contains the function's source text. probin
is unused except for dynamically-loaded C functions, for which it gives the name of the shared library file containing the function.
Last updated