summaryrefslogtreecommitdiff
path: root/src/pl
AgeCommit message (Expand)Author
2007-06-28Fix incorrect tests for undef Perl values in some places in plperl.c.Tom Lane
2007-02-08Fix an ancient logic error in plpgsql's exec_stmt_block: it thought it couldTom Lane
2007-02-08Rearrange use of plpgsql_add_initdatums() so that only the parsing of aTom Lane
2007-01-30Add SPI_push/SPI_pop calls so that datatype input and output functions calledTom Lane
2006-06-01Back-port recent ppport.h fix to 8.0 branch.Tom Lane
2006-05-21Change \' to '', for SQL standards compliance. Backpatch to 7.3, 7.4,Bruce Momjian
2006-02-20Fix three Python reference leaks in PLy_traceback(). This would resultNeil Conway
2006-01-28Undo perl's nasty locale setting on Windows. Since we can't do that asAndrew Dunstan
2006-01-17Repair problems with the result of lookup_rowtype_tupdesc() possibly beingTom Lane
2006-01-10In PLy_function_build_args(), the code loops repeatedly, constructingNeil Conway
2006-01-08Stop perl from hijacking stdio and other stuff on Windows.Andrew Dunstan
2006-01-03Add checks to verify that a plpgsql function returning a rowtype is actuallyTom Lane
2005-12-29Index: src/pl/plpython/plpython.cNeil Conway
2005-09-23Backpatch to 8.0.X:Bruce Momjian
2005-08-20Invoke mksafefunc and mkunsafefunc with :: decoration. This seems a goodTom Lane
2005-07-17Back-patch recent changes to alter the order of -L flags inserted fromTom Lane
2005-07-03Fix memory leak in plperl_hash_from_tuple(), per report from Jean-Max Reymond.Tom Lane
2005-06-20exec_eval_datum leaks memory when dealing with ROW or REC values.Tom Lane
2005-06-20plpgsql's exec_assign_value() freed the old value of a variable beforeTom Lane
2005-05-23Fix typo in PL/Perl Safe.pm initialization that prevented the properNeil Conway
2005-03-24Fix python regression testing script to bail out early if languageTom Lane
2005-03-24Adjust plpython to convert \r\n and \r to \n in Python scripts,Tom Lane
2005-02-08If we're gonna check for array overrun, we really should do so beforeTom Lane
2005-02-07Prevent 4 more buffer overruns in the PL/PgSQL parser. This is just aNeil Conway
2005-02-01Adjust plpgsql to allow assignment to an element of an array that isTom Lane
2005-01-21Prevent overrunning a heap-allocated buffer is more than 1024 parametersNeil Conway
2005-01-14plperl trigger handler tried to fetch new/old tuples even when firedTom Lane
2005-01-13Change exec_eval_simple_expr's param list allocation call fromTom Lane
2005-01-11plperl was not being quite paranoid enough about detecting 'undef' valuesTom Lane
2005-01-01Some more missed copyright notices. Many of these look like theyTom Lane
2004-12-21exec_eval_simple_expr() needs to do CommandCounterIncrement() not justTom Lane
2004-12-19plpgsql's exec_eval_simple_expr() now has to take responsibility forTom Lane
2004-12-17Allow 'ELSEIF' as an alternative to 'ELSIF' in PL/PgSQL. There have beenNeil Conway
2004-12-17Hook up the plpython result-object nrows and status methods correctly.Tom Lane
2004-12-16Cause configure --with-tcl to check for presence of <tcl.h>, as perTom Lane
2004-12-11Instead of supposing (wrongly, in the general case) that the rowtypeTom Lane
2004-11-30Fix a few typos in comments.Neil Conway
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-22The beginnings of a regression test for plperl. Right now it onlyTom Lane
2004-11-22Try to instill some sanity in plperl's function result processing.Tom Lane
2004-11-21While fixing plperl and pltcl, I realized plpgsql wasn't doingTom 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
2004-11-19Set rpath for plperl and plpython to ensure we can find the .so filesTom Lane
2004-11-18Fix memory clobber problem reported by John Hansen: plperl_safe_init()Tom Lane
2004-11-17Remove ill-considered suppression of gcc warnings in plperl, and fixTom Lane
2004-11-16Adjust safety restrictions for plperl functions. Andrew Dunstan'sTom Lane