]> granicus.if.org Git - postgresql/commit
Implement a preliminary 'template' facility for procedural languages,
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 5 Sep 2005 23:50:49 +0000 (23:50 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 5 Sep 2005 23:50:49 +0000 (23:50 +0000)
commite0dedd0559f005d60c69c9772163e69c204bac69
tree91e033922a669da037acdab9151808bb37020c05
parente35e6b1c37c1e52e36218dd3d35a5a2df1f4813f
Implement a preliminary 'template' facility for procedural languages,
as per my recent proposal.  For now the template data is hard-wired in
proclang.c --- this should be replaced later by a new shared system
catalog, but we don't want to force initdb during 8.1 beta.  This change
lets us cleanly load existing dump files even if they contain outright
wrong information about a PL's support functions, such as a wrong path
to the shared library or a missing validator function.  Also, we can
revert the recent kluges to make pg_dump dump PL support functions that
are stored in pg_catalog.
While at it, I removed the code in pg_regress that replaced $libdir
with a hardcoded path for temporary installations.  This is no longer
needed given our support for relocatable installations.
doc/src/sgml/ref/create_language.sgml
doc/src/sgml/ref/createlang.sgml
doc/src/sgml/xplang.sgml
src/backend/commands/proclang.c
src/backend/parser/gram.y
src/bin/pg_dump/pg_dump.c
src/bin/pg_dump/pg_dump.h
src/bin/scripts/createlang.c
src/test/regress/pg_regress.sh