mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-18 20:36:58 +08:00
Use the term "system catalog" rather than "system relation" in assorted places where it's clearly referring to a table rather than, say, an index. Use more natural word order in the header boilerplate, improve some of the one-liner catalog descriptions, and fix assorted random deviations from the normal boilerplate. All purely neatnik-ism, but why not. John Naylor, some additional cleanup by me Discussion: https://postgr.es/m/CAJVSVGUeJmFB3h-NJ18P32NPa+kzC165nm7GSoGHfPaN80Wxcw@mail.gmail.com
52 lines
2.3 KiB
Plaintext
52 lines
2.3 KiB
Plaintext
#----------------------------------------------------------------------
|
|
#
|
|
# pg_pltemplate.dat
|
|
# Initial contents of the pg_pltemplate system catalog.
|
|
#
|
|
# Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
|
|
# Portions Copyright (c) 1994, Regents of the University of California
|
|
#
|
|
# src/include/catalog/pg_pltemplate.dat
|
|
#
|
|
#----------------------------------------------------------------------
|
|
|
|
[
|
|
|
|
{ tmplname => 'plpgsql', tmpltrusted => 't', tmpldbacreate => 't',
|
|
tmplhandler => 'plpgsql_call_handler', tmplinline => 'plpgsql_inline_handler',
|
|
tmplvalidator => 'plpgsql_validator', tmpllibrary => '$libdir/plpgsql',
|
|
tmplacl => '_null_' },
|
|
{ tmplname => 'pltcl', tmpltrusted => 't', tmpldbacreate => 't',
|
|
tmplhandler => 'pltcl_call_handler', tmplinline => '_null_',
|
|
tmplvalidator => '_null_', tmpllibrary => '$libdir/pltcl',
|
|
tmplacl => '_null_' },
|
|
{ tmplname => 'pltclu', tmpltrusted => 'f', tmpldbacreate => 'f',
|
|
tmplhandler => 'pltclu_call_handler', tmplinline => '_null_',
|
|
tmplvalidator => '_null_', tmpllibrary => '$libdir/pltcl',
|
|
tmplacl => '_null_' },
|
|
{ tmplname => 'plperl', tmpltrusted => 't', tmpldbacreate => 't',
|
|
tmplhandler => 'plperl_call_handler', tmplinline => 'plperl_inline_handler',
|
|
tmplvalidator => 'plperl_validator', tmpllibrary => '$libdir/plperl',
|
|
tmplacl => '_null_' },
|
|
{ tmplname => 'plperlu', tmpltrusted => 'f', tmpldbacreate => 'f',
|
|
tmplhandler => 'plperlu_call_handler', tmplinline => 'plperlu_inline_handler',
|
|
tmplvalidator => 'plperlu_validator', tmpllibrary => '$libdir/plperl',
|
|
tmplacl => '_null_' },
|
|
{ tmplname => 'plpythonu', tmpltrusted => 'f', tmpldbacreate => 'f',
|
|
tmplhandler => 'plpython_call_handler',
|
|
tmplinline => 'plpython_inline_handler',
|
|
tmplvalidator => 'plpython_validator', tmpllibrary => '$libdir/plpython2',
|
|
tmplacl => '_null_' },
|
|
{ tmplname => 'plpython2u', tmpltrusted => 'f', tmpldbacreate => 'f',
|
|
tmplhandler => 'plpython2_call_handler',
|
|
tmplinline => 'plpython2_inline_handler',
|
|
tmplvalidator => 'plpython2_validator', tmpllibrary => '$libdir/plpython2',
|
|
tmplacl => '_null_' },
|
|
{ tmplname => 'plpython3u', tmpltrusted => 'f', tmpldbacreate => 'f',
|
|
tmplhandler => 'plpython3_call_handler',
|
|
tmplinline => 'plpython3_inline_handler',
|
|
tmplvalidator => 'plpython3_validator', tmpllibrary => '$libdir/plpython3',
|
|
tmplacl => '_null_' },
|
|
|
|
]
|