summaryrefslogtreecommitdiff
path: root/src/pl/plperl/plperl.c
AgeCommit message (Expand)Author
2006-04-04Modify all callers of datatype input and receive functions so that if theseTom Lane
2006-03-19Fix a few places that were checking for the return value of palloc() to beNeil Conway
2006-03-14Improve parser so that we can show an error cursor position for errorsTom Lane
2006-03-11Remove copyright notices from Jan (per author approval), and those filesBruce Momjian
2006-03-05Prepared queries for PLPerl, plus fixing a small plperl memory leak. PatchAndrew Dunstan
2006-02-28Fix typo in comment.Neil Conway
2006-02-26Fix a few minor typos in comments in PL/Perl.Neil Conway
2006-01-28Undo perl's nasty locale setting on Windows. Since we can't do that asAndrew Dunstan
2006-01-28Per a bug report from Theo Schlossnagle, plperl_return_next() leaksNeil Conway
2006-01-08Rationalise perl header inclusions via a common include file, which alsoAndrew Dunstan
2005-12-29Move declaration of check_function_bodies to where the perl headersAndrew Dunstan
2005-12-28Fix plperl validator to honor check_function_bodies: when that is OFF,Tom Lane
2005-11-22Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian
2005-11-18translate undef to NULL for result arrayref, now that we allow NULLs in array...Andrew Dunstan
2005-10-18Code review for spi_query/spi_fetchrow patch: handle errors sanely,Tom Lane
2005-10-15Standard pgindent run for 8.1.Bruce Momjian
2005-08-24Get rid of inappropriate use of croak(). Per report from Michael Fuhr.Tom Lane
2005-08-24Fix up plperl 'use_strict' so that it can be enabled or disabled on theTom Lane
2005-08-20Invoke mksafefunc and mkunsafefunc with :: decoration. This seems a goodTom Lane
2005-08-12Un-break plperl for non-set case.Tom Lane
2005-08-12More rsi assignment line too.Bruce Momjian
2005-08-12> The attached patch moves a plperl sanity check into the correctBruce Momjian
2005-07-12Fix plperl crash with list value return for an array result type.Tom Lane
2005-07-12Fix plperl to do recursion safely, and fix a problem with array results.Tom Lane
2005-07-10Rename xmalloc to pg_malloc for consistency with psql usage.Bruce Momjian
2005-07-10Following up a previous thought I had, yesterday I realised how toBruce Momjian
2005-07-10The attached patch implements spi_query() and spi_fetchrow() functionsBruce Momjian
2005-07-06Currently, nonfatal warnings are not trapped (as they should be) byBruce Momjian
2005-07-06Currently, nonfatal warnings are not trapped (as they should be) byBruce Momjian
2005-07-03Fix memory leak in plperl_hash_from_tuple(), per report from Jean-Max Reymond.Tom Lane
2005-06-22Add a validator function for plperl. Andrew DunstanTom Lane
2005-06-15> Here's a patch I added against plperl, originally against beta5, nowBruce Momjian
2005-06-05Here's a patch to do the following:Bruce Momjian
2005-06-04At 2005-05-21 20:18:50 +0530, ams@oryx.com wrote:Bruce Momjian
2005-05-23Fix typo in PL/Perl Safe.pm initialization that prevented the properNeil Conway
2005-05-06For some reason access/tupmacs.h has been #including utils/memutils.h,Tom Lane
2005-05-01Change CREATE TYPE to require datatype output and send functions to haveTom Lane
2005-04-01Make plperl work with OUT parameters.Tom Lane
2005-03-29Convert oidvector and int2vector into variable-length arrays. ThisTom Lane
2005-02-23Properly undef _(x) gettext macro.Bruce Momjian
2005-02-22Use _() macro consistently rather than gettext(). Add translationBruce Momjian
2005-01-14plperl trigger handler tried to fetch new/old tuples even when firedTom Lane
2005-01-11plperl was not being quite paranoid enough about detecting 'undef' valuesTom Lane
2004-11-29Update plperl to use ereport() not elog() for user-facing messages,Tom Lane
2004-11-24Avoid getting bit by roundoff error while checking $Safe::VERSION.Tom Lane
2004-11-23Further plperl cleanup: be more paranoid about checking the type ofTom Lane
2004-11-22Try to instill some sanity in plperl's function result processing.Tom Lane
2004-11-21Suppress remaining compile warnings, and add a comment about whyTom Lane
2004-11-21Fix plperl and pltcl error handling per my previous proposal. SPITom Lane
2004-11-20Fix plperl's elog() function to convert elog(ERROR) into Perl croak(),Tom Lane