postgresql/src/pl/plperl
Tom Lane a77e32d7c5 Apply the core parts of Dennis Bjorklund's patch to allow function
parameters to be declared with names.  pg_proc has a column to store
names, and CREATE FUNCTION can insert data into it, but that's all as
yet.  I need to do more work on the pg_dump and plpgsql portions of the
patch before committing those, but I thought I'd get the bulky changes
in before the tree drifts under me.
initdb forced due to pg_proc change.
2004-01-06 23:55:19 +00:00
..
eloglvl.c Error message editing in src/pl. The plpython module could use another 2003-07-25 23:37:31 +00:00
eloglvl.h pgindent run. 2002-09-04 20:31:48 +00:00
GNUmakefile $Header: -> $PostgreSQL Changes ... 2003-11-29 19:52:15 +00:00
plperl.c Apply the core parts of Dennis Bjorklund's patch to allow function 2004-01-06 23:55:19 +00:00
ppport.h Make 'dummy' declarations in header files be 'extern int no_such_variable' 2002-10-18 20:33:57 +00:00
README Polish PL/Perl documentation. The README file got shrunk to being a 2000-12-19 18:16:26 +00:00
SPI.xs Fix includes for plperl: ensure postgres.h is included first, 2002-09-04 22:49:37 +00:00

PL/Perl allows you to write PostgreSQL functions and procedures in
Perl.  To include PL/Perl in the build use './configure --with-perl'.
To build from this directory use 'gmake all; gmake install'.  libperl
must have been built as a shared library, which is usually not the
case in standard installations.

Consult the PostgreSQL User's Guide and the INSTALL file in the
top-level directory of the source distribution for more information.