summaryrefslogtreecommitdiff
path: root/src/pl
AgeCommit message (Expand)Author
2008-06-17Clean up a number of bogosities around pltcl's handling of the Tcl "result":Tom Lane
2008-05-17Add $PostgreSQL$ markers to a lot of files that were missing them.Andrew Dunstan
2008-05-16Suppress a possibly-uninitialized-variable warning. (I'm only seeing itTom Lane
2008-05-15Support SQL/PSM-compatible CASE statement in plpgsql.Tom Lane
2008-05-13Improve plpgsql's RAISE command. It is now possible to attach DETAIL andTom Lane
2008-05-12Improve snapshot manager by keeping explicit track of snapshots.Alvaro Herrera
2008-05-12Restructure some header files a bit, in particular heapam.h, by removing someAlvaro Herrera
2008-05-09Add "%option noinput" to the scanners to avoid compiler warnings. GCC 4.3Peter Eisentraut
2008-05-03Fix plpython to not get totally confused by OUT arguments. (It still doesn'tTom Lane
2008-05-03Support RETURN QUERY EXECUTE in plpgsql.Tom Lane
2008-04-17Clean up a few places where Datums were being treated as pointers (and viceAlvaro Herrera
2008-04-07Implement a few changes to how shared libraries and dynamically loadablePeter Eisentraut
2008-04-06Make plpgsql support FOR over a query specified by a cursor declaration,Tom Lane
2008-04-01Support EXECUTE USING in plpgsql.Tom Lane
2008-03-28Support statement-level ON TRUNCATE triggers. Simon RiggsTom Lane
2008-03-27Reduce the need for frontend programs to include "postgres.h" by refactoringTom Lane
2008-03-26Rename snapmgmt.c/h to snapmgr.c/h, for consistency with other files.Alvaro Herrera
2008-03-26Separate snapshot management code from tuple visibility code, create aAlvaro Herrera
2008-03-25Simplify and standardize conversions between TEXT datums and ordinary CTom Lane
2008-03-25Add a new tuplestore API function, tuplestore_putvalues(). This isNeil Conway
2008-03-21More README src cleanups.Bruce Momjian
2008-03-18Catch all errors in for and while loops in makefiles. Don't ignore anyPeter Eisentraut
2008-01-23Document the fix for perl 5.10 with this comment:Andrew Dunstan
2008-01-22Work around for perl 5.10 bug - fix due to perl hacker Simon Cozens.Andrew Dunstan
2008-01-15Somebody forgot to add this ERRCODE everywhere it should go ...Tom Lane
2008-01-02Fix plpython's overoptimistic caching of information about the rowtype ofTom Lane
2008-01-01Update copyrights in source tree to 2008.Bruce Momjian
2007-12-01Suppress compiler warnings in recent plperl patch. Avoid uselessly expensiveTom Lane
2007-12-01Revert inadvertantly committed change.Andrew Dunstan
2007-12-01Workaround for perl problem where evaluating UTF8 regexes can causeAndrew Dunstan
2007-11-27Fix plpgsql to not lookup block labels except in contexts where a block labelTom Lane
2007-11-23Fix buggy usage of vsnprintf in PL/Python by removing it altogether, insteadAlvaro Herrera
2007-11-22Prevent Perl from introducing a possibly-incompatible definition of typeTom Lane
2007-11-15Re-run pgindent with updated list of typedefs. (Updated README shouldBruce Momjian
2007-11-15pgindent run for 8.3.Bruce Momjian
2007-11-11Ensure that typmod decoration on a datatype name is validated in all cases,Tom Lane
2007-11-09Recognize RETURN QUERY via a textual test, so that QUERY doesn't need to beTom Lane
2007-11-07Use "alternative" instead of "alternate" where it is clearer.Peter Eisentraut
2007-10-05Fix plperl and pltcl to include the name of the current function whenTom Lane
2007-09-28Update TCL comment:Bruce Momjian
2007-09-21Insert a hack in pl/tcl to disable Tcl's built-in Notifier subsystem, whichTom Lane
2007-08-10Fix uninitialized-memory bug in plpython proargnames patch. Per bug #3523Tom Lane
2007-07-25Silence compiler warnings on mingwMagnus Hagander
2007-07-25Implement RETURN QUERY for PL/PgSQL. This provides some convenient syntaxNeil Conway
2007-07-20Capitalize language key words in error messagesPeter Eisentraut
2007-07-16Allow plpgsql function parameter names to be qualified with the function'sTom Lane
2007-07-15Because plpgsql's scanner uses %option case-insensitive, flex's results couldTom Lane
2007-07-15Reject zero or negative BY step in plpgsql integer FOR-loops, and behaveTom Lane
2007-07-13Volatile-qualify a dozen variables in plpython.c to eliminate warningsTom Lane
2007-06-28Fix incorrect tests for undef Perl values in some places in plperl.c.Tom Lane