Thread: [PATCH] tiny fix for plperlu
Attached patch fixes following problem: createlang.sh expects one handler for each PL. If a handler function for a new PL is found in pg_languages, PL won't be created. So you need to have plperl_call_handler and plperlu_call_handler. This patch just does that. -alex
Alex Pilosov writes: > Attached patch fixes following problem: createlang.sh expects one handler > for each PL. If a handler function for a new PL is found in pg_languages, > PL won't be created. So you need to have plperl_call_handler and > plperlu_call_handler. This patch just does that. This is already fixed by allowing handlers to be shared. -- Peter Eisentraut peter_e@gmx.net http://funkturm.homeip.net/~peter
Nevermind this patch then... On Wed, 29 Aug 2001, Peter Eisentraut wrote: > Alex Pilosov writes: > > > Attached patch fixes following problem: createlang.sh expects one handler > > for each PL. If a handler function for a new PL is found in pg_languages, > > PL won't be created. So you need to have plperl_call_handler and > > plperlu_call_handler. This patch just does that. > > This is already fixed by allowing handlers to be shared. > >