]> granicus.if.org Git - postgresql/commit
Make LANCOMPILER clause in CREATE LANGUAGE optional. Allow "identifier"
authorPeter Eisentraut <peter_e@gmx.net>
Mon, 13 Aug 2001 21:34:54 +0000 (21:34 +0000)
committerPeter Eisentraut <peter_e@gmx.net>
Mon, 13 Aug 2001 21:34:54 +0000 (21:34 +0000)
commitee8ed85da3b0548eba96f2ec68fa7ba577bba586
treeb928ea217350fe43f7dba0966f6a54882ae233ae
parent38cfc95865864a071745315c5f21b2c4f009e79c
Make LANCOMPILER clause in CREATE LANGUAGE optional.  Allow "identifier"
syntax for language names (instead of 'string').

createlang now handles the case where a second language uses the same call
handler as an already installed language (e.g., plperl/plperlu).

droplang now handles the reverse case, i.e., dropping a language where
the call handler is still used by another language.  Moreover, droplang
can now be used to drop any user-defined language, not just the supplied
ones.
doc/src/sgml/ref/create_function.sgml
doc/src/sgml/ref/create_language.sgml
doc/src/sgml/ref/drop_language.sgml
doc/src/sgml/xplang.sgml
src/backend/parser/gram.y
src/bin/scripts/createlang.sh
src/bin/scripts/droplang