summaryrefslogtreecommitdiff
path: root/src/pl
AgeCommit message (Expand)Author
2010-02-15Move main error message text in plperl into errmsg from errdetail,Alvaro Herrera
2010-02-14Wrap calls to SearchSysCache and related functions using macros.Robert Haas
2010-02-12Add regression test files inadvertantly omitted in plperl.on_plperl{u}_init p...Andrew Dunstan
2010-02-12Don't choke when exec_move_row assigns a synthesized null to a columnTom Lane
2010-02-12Add plperl.on_plperl_init and plperl.on_plperlu_init settings for language-sp...Andrew Dunstan
2010-02-12Free reference in correct Perl context. Backpatch to release 8.2. Patch from ...Andrew Dunstan
2010-01-30Add plperl.on_perl_init setting to provide for initializing the perl library ...Andrew Dunstan
2010-01-28Fix bug found by warning from recent gcc. patch from Tim Bunce.Andrew Dunstan
2010-01-26Various small improvements and cleanups for PL/Perl.Andrew Dunstan
2010-01-25Apply Tcl_Init() to the "hold" interpreter created by pltcl.Tom Lane
2010-01-22PL/Python DO handlerPeter Eisentraut
2010-01-20Add utility functions to PLPerl:Andrew Dunstan
2010-01-19Add "USING expressions" option to plpgsql's OPEN cursor FOR EXECUTE.Tom Lane
2010-01-16Improved printing of Python exceptions in PL/PythonPeter Eisentraut
2010-01-10Remove unnecessary use of temp file. Tim BunceTom Lane
2010-01-10Improve plpgsql parsing to report "foo is not a known variable", rather than aTom Lane
2010-01-10Improve plpgsql's handling of record field references by forcing all potentialTom Lane
2010-01-09Provide regression testing for plperlu, and for plperl+plperlu interaction.Andrew Dunstan
2010-01-09Fix makefile so it works for VPATH case.Tom Lane
2010-01-09Tidy up and refactor plperl.c.Andrew Dunstan
2010-01-04Check values passed back from PLPerl to the database, via function return,Andrew Dunstan
2010-01-02Update copyright for the year 2010.Bruce Momjian
2009-12-31Redefine Datum as uintptr_t, instead of unsigned long.Tom Lane
2009-12-29Previous fix for temporary file management broke returning a set fromHeikki Linnakangas
2009-12-25Upgrade to latest ppport.h. Patch from Tim Bunce.Andrew Dunstan
2009-12-19Translation updatesPeter Eisentraut
2009-12-15Python 3 support in PL/PythonPeter Eisentraut
2009-12-10PL/Python array supportPeter Eisentraut
2009-12-07Add exclusion constraints, which generalize the concept of uniqueness toTom Lane
2009-11-29Fix session-lifespan memory leak when a plperl function is redefined:Tom Lane
2009-11-29Add support for anonymous code blocks (DO blocks) to PL/Perl.Tom Lane
2009-11-13Add control knobs for plpgsql's variable resolution behavior, and make theTom Lane
2009-11-12Remove plpgsql's separate lexer (finally!), in favor of using the core lexerTom Lane
2009-11-10More incremental refactoring in plpgsql: get rid of gram.y dependencies onTom Lane
2009-11-09Modernize plpgsql's handling of parse locations, making it look a lot moreTom Lane
2009-11-07Remove ancient text file containing plpgsql installation instructions.Tom Lane
2009-11-07Rearrange plpgsql parsing to simplify and speed it up a bit.Tom Lane
2009-11-06Change plpgsql from using textual substitution to insert variable referencesTom Lane
2009-11-05Remove plpgsql's RENAME declaration, which has bizarre and mostly nonfunctionalTom Lane
2009-11-04Add support for invoking parser callback hooks via SPI and in cached plans.Tom Lane
2009-11-03Improve PL/Python elog outputPeter Eisentraut
2009-11-03Fix obscure segfault condition in PL/PythonPeter Eisentraut
2009-10-31Ensure the previous Perl interpreter selection is restored upon exit fromTom Lane
2009-10-20Translations update for 8.5alpha2Peter Eisentraut
2009-10-15First committed version of plpython_unicode_0.out did not actually contain theTom Lane
2009-10-14Add alternative expected file for unicode test for client encoding not UTF8Peter Eisentraut
2009-09-29Allow MOVE FORWARD n, MOVE BACKWARD n, MOVE FORWARD ALL, MOVE BACKWARD ALLTom Lane
2009-09-28Convert a perl array to a postgres array when returned by Set Returning Funct...Andrew Dunstan
2009-09-22Implement the DO statement to support execution of PL code without havingTom Lane
2009-09-20Allow plpgsql IN parameters to be assigned to. Since the parameters are justTom Lane