Re: [HACKERS] plperl droplang patch

From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: Mark Hollomon <mhh(at)mindspring(dot)com>
Cc: pgsql-hackers(at)postgreSQL(dot)org
Subject: Re: [HACKERS] plperl droplang patch
Date: 2000-02-09 20:15:08
Message-ID: 200002092015.PAA14139@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Applied.

> Here is the patch to add plperl to droplang.
>
>
> *** droplang.old Tue Feb 8 21:00:34 2000
> --- droplang Tue Feb 8 21:02:27 2000
> ***************
> *** 159,167 ****
> lancomp="PL/Tcl"
> handler="pltcl_call_handler"
> ;;
> *)
> echo "$CMDNAME: unsupported language '$langname'"
> ! echo "Supported languages are 'plpgsql' and 'pltcl'."
> exit 1
> ;;
> esac
> --- 159,171 ----
> lancomp="PL/Tcl"
> handler="pltcl_call_handler"
> ;;
> + plperl)
> + lancomp="PL/Perl"
> + handler="plperl_call_handler"
> + ;;
> *)
> echo "$CMDNAME: unsupported language '$langname'"
> ! echo "Supported languages are 'plpgsql', 'pltcl', and 'plperl'."
> exit 1
> ;;
> esac
>
>
>
> --
> Mark Hollomon
> mhh(at)mindspring(dot)com
>
> ************
>

--
Bruce Momjian | http://www.op.net/~candle
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Bryan White 2000-02-09 21:31:14 The persistance of C functions
Previous Message Bruce Momjian 2000-02-09 20:09:02 Re: [HACKERS] Bug in cursors??