summaryrefslogtreecommitdiff
path: root/src/pl/plperl/plperl.c
Commit message (Expand)AuthorAgeFilesLines
* Fix plperl and pltcl to include the name of the current function whenTom Lane2007-10-051-12/+18
* Fix incorrect tests for undef Perl values in some places in plperl.c.Tom Lane2007-06-281-11/+12
* Support enum data types. Along the way, use macros for the values ofTom Lane2007-04-021-8/+8
* Combine cmin and cmax fields of HeapTupleHeaders into a single field, byTom Lane2007-02-091-18/+16
* Wording cleanup for error messages. Also change can't -> cannot.Bruce Momjian2007-02-011-3/+3
* remove unnecessary and now inaccurate cast which I should have removed with o...Andrew Dunstan2007-01-271-3/+2
* Allow args to spi_prepare to be standard type aliaes as well as those known i...Andrew Dunstan2007-01-271-14/+14
* remove duplicate declaration, per report from Magnus Hagander.Andrew Dunstan2006-11-211-2/+1
* Force plperl and plperlu to run in separate interpreters. Create an errorAndrew Dunstan2006-11-131-39/+213
* Clean up local redeclarations of variables with DLLIMPORT, per reportTom Lane2006-10-191-4/+2
* Adjust plperl to ensure that all strings and hash keys passed to PerlTom Lane2006-10-151-70/+114
* pgindent run for 8.2.Bruce Momjian2006-10-041-163/+171
* Add new return codes SPI_OK_INSERT_RETURNING etc to the SPI API.Tom Lane2006-08-271-2/+2
* Back out plperl OUT hash/array parameter patch, again.Bruce Momjian2006-08-131-93/+21
* Re-apply plperl patch that allows OUT parameters to be placed into PerlBruce Momjian2006-08-131-21/+93
* Back out patch for plperl to handle OUT paramaters into arrays andBruce Momjian2006-08-121-93/+21
* plperl:Bruce Momjian2006-08-111-21/+93
* Add a feature for automatic initialization and finalization of dynamicallyTom Lane2006-08-081-31/+17
* Fix problems with cached tuple descriptors disappearing while still in useTom Lane2006-06-161-1/+2
* Magic blocks don't do us any good unless we use 'em ... so install oneTom Lane2006-05-301-1/+3
* Make plperl's $_TD trigger data a global rather than a lexical variable,Andrew Dunstan2006-05-291-2/+2
* Add table_name and table_schema to plperl trigger data. relname isAndrew Dunstan2006-05-261-1/+7
* Modify all callers of datatype input and receive functions so that if theseTom Lane2006-04-041-50/+59
* Fix a few places that were checking for the return value of palloc() to beNeil Conway2006-03-191-5/+1
* Improve parser so that we can show an error cursor position for errorsTom Lane2006-03-141-27/+12
* Remove copyright notices from Jan (per author approval), and those filesBruce Momjian2006-03-111-33/+1
* Prepared queries for PLPerl, plus fixing a small plperl memory leak. PatchAndrew Dunstan2006-03-051-13/+483
* Fix typo in comment.Neil Conway2006-02-281-2/+2
* Fix a few minor typos in comments in PL/Perl.Neil Conway2006-02-261-3/+3
* Undo perl's nasty locale setting on Windows. Since we can't do that asAndrew Dunstan2006-01-281-1/+84
* Per a bug report from Theo Schlossnagle, plperl_return_next() leaksNeil Conway2006-01-281-68/+113
* Rationalise perl header inclusions via a common include file, which alsoAndrew Dunstan2006-01-081-13/+2
* Move declaration of check_function_bodies to where the perl headersAndrew Dunstan2005-12-291-3/+4
* Fix plperl validator to honor check_function_bodies: when that is OFF,Tom Lane2005-12-281-9/+47
* Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian2005-11-221-11/+11
* translate undef to NULL for result arrayref, now that we allow NULLs in array...Andrew Dunstan2005-11-181-2/+6
* Code review for spi_query/spi_fetchrow patch: handle errors sanely,Tom Lane2005-10-181-22/+102
* Standard pgindent run for 8.1.Bruce Momjian2005-10-151-118/+127
* Get rid of inappropriate use of croak(). Per report from Michael Fuhr.Tom Lane2005-08-241-2/+2
* Fix up plperl 'use_strict' so that it can be enabled or disabled on theTom Lane2005-08-241-82/+88
* Invoke mksafefunc and mkunsafefunc with :: decoration. This seems a goodTom Lane2005-08-201-2/+2
* Un-break plperl for non-set case.Tom Lane2005-08-121-11/+15
* More rsi assignment line too.Bruce Momjian2005-08-121-4/+4
* > The attached patch moves a plperl sanity check into the correctBruce Momjian2005-08-121-11/+11
* Fix plperl crash with list value return for an array result type.Tom Lane2005-07-121-3/+3
* Fix plperl to do recursion safely, and fix a problem with array results.Tom Lane2005-07-121-19/+34
* Rename xmalloc to pg_malloc for consistency with psql usage.Bruce Momjian2005-07-101-1/+2
* Following up a previous thought I had, yesterday I realised how toBruce Momjian2005-07-101-6/+75
* The attached patch implements spi_query() and spi_fetchrow() functionsBruce Momjian2005-07-101-1/+77
* Currently, nonfatal warnings are not trapped (as they should be) byBruce Momjian2005-07-061-1/+1