aboutsummaryrefslogtreecommitdiff
path: root/src/pl
Commit message (Expand)AuthorAge
* Fix three Python reference leaks in PLy_traceback(). This would resultNeil Conway2006-02-20
* Undo perl's nasty locale setting on Windows. Since we can't do that asAndrew Dunstan2006-01-28
* Repair problems with the result of lookup_rowtype_tupdesc() possibly beingTom Lane2006-01-17
* In PLy_function_build_args(), the code loops repeatedly, constructingNeil Conway2006-01-10
* Stop perl from hijacking stdio and other stuff on Windows.Andrew Dunstan2006-01-08
* Add checks to verify that a plpgsql function returning a rowtype is actuallyTom Lane2006-01-03
* Index: src/pl/plpython/plpython.cNeil Conway2005-12-29
* Backpatch to 8.0.X:Bruce Momjian2005-09-23
* Invoke mksafefunc and mkunsafefunc with :: decoration. This seems a goodTom Lane2005-08-20
* Back-patch recent changes to alter the order of -L flags inserted fromTom Lane2005-07-17
* Fix memory leak in plperl_hash_from_tuple(), per report from Jean-Max Reymond.Tom Lane2005-07-03
* exec_eval_datum leaks memory when dealing with ROW or REC values.Tom Lane2005-06-20
* plpgsql's exec_assign_value() freed the old value of a variable beforeTom Lane2005-06-20
* Fix typo in PL/Perl Safe.pm initialization that prevented the properNeil Conway2005-05-23
* Fix python regression testing script to bail out early if languageTom Lane2005-03-24
* Adjust plpython to convert \r\n and \r to \n in Python scripts,Tom Lane2005-03-24
* If we're gonna check for array overrun, we really should do so beforeTom Lane2005-02-08
* Prevent 4 more buffer overruns in the PL/PgSQL parser. This is just aNeil Conway2005-02-07
* Adjust plpgsql to allow assignment to an element of an array that isTom Lane2005-02-01
* Prevent overrunning a heap-allocated buffer is more than 1024 parametersNeil Conway2005-01-21
* plperl trigger handler tried to fetch new/old tuples even when firedTom Lane2005-01-14
* Change exec_eval_simple_expr's param list allocation call fromTom Lane2005-01-13
* plperl was not being quite paranoid enough about detecting 'undef' valuesTom Lane2005-01-11
* Some more missed copyright notices. Many of these look like theyTom Lane2005-01-01
* exec_eval_simple_expr() needs to do CommandCounterIncrement() not justTom Lane2004-12-21
* plpgsql's exec_eval_simple_expr() now has to take responsibility forTom Lane2004-12-19
* Allow 'ELSEIF' as an alternative to 'ELSIF' in PL/PgSQL. There have beenNeil Conway2004-12-17
* Hook up the plpython result-object nrows and status methods correctly.Tom Lane2004-12-17
* Cause configure --with-tcl to check for presence of <tcl.h>, as perTom Lane2004-12-16
* Instead of supposing (wrongly, in the general case) that the rowtypeTom Lane2004-12-11
* Fix a few typos in comments.Neil Conway2004-11-30
* Update plperl to use ereport() not elog() for user-facing messages,Tom Lane2004-11-29
* Avoid getting bit by roundoff error while checking $Safe::VERSION.Tom Lane2004-11-24
* Further plperl cleanup: be more paranoid about checking the type ofTom Lane2004-11-23
* The beginnings of a regression test for plperl. Right now it onlyTom Lane2004-11-22
* Try to instill some sanity in plperl's function result processing.Tom Lane2004-11-22
* While fixing plperl and pltcl, I realized plpgsql wasn't doingTom Lane2004-11-21
* Suppress remaining compile warnings, and add a comment about whyTom Lane2004-11-21
* Fix plperl and pltcl error handling per my previous proposal. SPITom Lane2004-11-21
* Fix plperl's elog() function to convert elog(ERROR) into Perl croak(),Tom Lane2004-11-20
* Set rpath for plperl and plpython to ensure we can find the .so filesTom Lane2004-11-19
* Fix memory clobber problem reported by John Hansen: plperl_safe_init()Tom Lane2004-11-18
* Remove ill-considered suppression of gcc warnings in plperl, and fixTom Lane2004-11-17
* Adjust safety restrictions for plperl functions. Andrew Dunstan'sTom Lane2004-11-16
* Rethink plpgsql's way of handling SPI execution during an exception block.Tom Lane2004-11-16
* Remove three unnecessary casts from a pointer type to char * when callingNeil Conway2004-10-25
* I have attached 5 patches (split up for ease of review) to plperl.c.Bruce Momjian2004-10-15
* plpgsql EXIT construct forgot to downcase or quote-strip its identifierTom Lane2004-10-12
* Another try at making plpython autoconfiguration work correctly. Use aTom Lane2004-10-11
* Cosmetic improvements/code cleanup:Neil Conway2004-10-10