summaryrefslogtreecommitdiff
path: root/src/pl
Commit message (Expand)AuthorAgeFilesLines
* Add $PostgreSQL$ markers to a lot of files that were missing them.Andrew Dunstan2008-05-171-0/+3
* Suppress a possibly-uninitialized-variable warning. (I'm only seeing itTom Lane2008-05-161-2/+2
* Support SQL/PSM-compatible CASE statement in plpgsql.Tom Lane2008-05-156-18/+344
* Improve plpgsql's RAISE command. It is now possible to attach DETAIL andTom Lane2008-05-136-135/+495
* Improve snapshot manager by keeping explicit track of snapshots.Alvaro Herrera2008-05-121-28/+17
* Restructure some header files a bit, in particular heapam.h, by removing someAlvaro Herrera2008-05-125-10/+5
* Add "%option noinput" to the scanners to avoid compiler warnings. GCC 4.3Peter Eisentraut2008-05-091-1/+2
* Fix plpython to not get totally confused by OUT arguments. (It still doesn'tTom Lane2008-05-035-48/+114
* Support RETURN QUERY EXECUTE in plpgsql.Tom Lane2008-05-034-60/+143
* Clean up a few places where Datums were being treated as pointers (and viceAlvaro Herrera2008-04-171-9/+10
* Implement a few changes to how shared libraries and dynamically loadablePeter Eisentraut2008-04-074-71/+21
* Make plpgsql support FOR over a query specified by a cursor declaration,Tom Lane2008-04-065-445/+581
* Support EXECUTE USING in plpgsql.Tom Lane2008-04-015-52/+255
* Support statement-level ON TRUNCATE triggers. Simon RiggsTom Lane2008-03-284-5/+15
* Reduce the need for frontend programs to include "postgres.h" by refactoringTom Lane2008-03-271-1/+2
* Rename snapmgmt.c/h to snapmgr.c/h, for consistency with other files.Alvaro Herrera2008-03-261-2/+2
* Separate snapshot management code from tuple visibility code, create aAlvaro Herrera2008-03-261-1/+2
* Simplify and standardize conversions between TEXT datums and ordinary CTom Lane2008-03-255-32/+26
* Add a new tuplestore API function, tuplestore_putvalues(). This isNeil Conway2008-03-252-23/+28
* More README src cleanups.Bruce Momjian2008-03-212-13/+15
* Catch all errors in for and while loops in makefiles. Don't ignore anyPeter Eisentraut2008-03-182-11/+5
* Document the fix for perl 5.10 with this comment:Andrew Dunstan2008-01-231-1/+8
* Work around for perl 5.10 bug - fix due to perl hacker Simon Cozens.Andrew Dunstan2008-01-221-3/+3
* Somebody forgot to add this ERRCODE everywhere it should go ...Tom Lane2008-01-151-1/+5
* Fix plpython's overoptimistic caching of information about the rowtype ofTom Lane2008-01-021-30/+63
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-019-18/+18
* Suppress compiler warnings in recent plperl patch. Avoid uselessly expensiveTom Lane2007-12-011-21/+9
* Revert inadvertantly committed change.Andrew Dunstan2007-12-011-2/+1
* Workaround for perl problem where evaluating UTF8 regexes can causeAndrew Dunstan2007-12-012-2/+52
* Fix plpgsql to not lookup block labels except in contexts where a block labelTom Lane2007-11-274-179/+190
* Fix buggy usage of vsnprintf in PL/Python by removing it altogether, insteadAlvaro Herrera2007-11-231-73/+26
* Prevent Perl from introducing a possibly-incompatible definition of typeTom Lane2007-11-221-1/+6
* Re-run pgindent with updated list of typedefs. (Updated README shouldBruce Momjian2007-11-154-15/+15
* pgindent run for 8.3.Bruce Momjian2007-11-157-145/+151
* Ensure that typmod decoration on a datatype name is validated in all cases,Tom Lane2007-11-111-23/+15
* Recognize RETURN QUERY via a textual test, so that QUERY doesn't need to beTom Lane2007-11-092-8/+12
* Use "alternative" instead of "alternate" where it is clearer.Peter Eisentraut2007-11-071-2/+2
* Fix plperl and pltcl to include the name of the current function whenTom Lane2007-10-054-32/+50
* Update TCL comment:Bruce Momjian2007-09-281-4/+4
* Insert a hack in pl/tcl to disable Tcl's built-in Notifier subsystem, whichTom Lane2007-09-211-6/+89
* Fix uninitialized-memory bug in plpython proargnames patch. Per bug #3523Tom Lane2007-08-101-1/+2
* Silence compiler warnings on mingwMagnus Hagander2007-07-251-1/+4
* Implement RETURN QUERY for PL/PgSQL. This provides some convenient syntaxNeil Conway2007-07-255-8/+115
* Capitalize language key words in error messagesPeter Eisentraut2007-07-201-17/+17
* Allow plpgsql function parameter names to be qualified with the function'sTom Lane2007-07-164-20/+20
* Because plpgsql's scanner uses %option case-insensitive, flex's results couldTom Lane2007-07-151-2/+6
* Reject zero or negative BY step in plpgsql integer FOR-loops, and behaveTom Lane2007-07-154-58/+68
* Volatile-qualify a dozen variables in plpython.c to eliminate warningsTom Lane2007-07-131-25/+28
* Fix incorrect tests for undef Perl values in some places in plperl.c.Tom Lane2007-06-281-11/+12
* Remove unused "caller" argument from stringToQualifiedNameList.Alvaro Herrera2007-06-261-4/+3