summaryrefslogtreecommitdiff
path: root/src/pl
AgeCommit message (Expand)Author
2004-08-05Move include for Python.h above postgres.h to eliminate compiler warning.Joe Conway
2004-08-04Label CVS tip as 8.0devel instead of 7.5devel. Adjust various commentsTom Lane
2004-08-02Actually, there's no need to use pg_strcasecmp for checking exceptionTom Lane
2004-08-02Allow DECLARE CURSOR to take parameters from the portal in which it isTom Lane
2004-08-01Some mop-up work for savepoints (nested transactions). Store a smallTom Lane
2004-07-31Support "OR condition ..." in plpgsql EXCEPTION clauses to make the syntaxTom Lane
2004-07-31Be more consistent about reporting SPI errors in the various PLs.Tom Lane
2004-07-31plpgsql does exceptions.Tom Lane
2004-07-31Restructure error handling as recently discussed. It is now reallyTom Lane
2004-07-21The attached patch allows 'select foo()' as well as 'select * fromBruce Momjian
2004-07-16Here is a patch required to build plperl with win32. The issues were:Bruce Momjian
2004-07-12The attached patch, which incorporates the previous one sent andBruce Momjian
2004-07-05Revert broken rpath addition.Tom Lane
2004-07-05Allow plperl to compile with Perl 5.05.Bruce Momjian
2004-07-04Okay, I've had it with answering newbie questions about why plpgsqlTom Lane
2004-07-01plperl update from Andrew Dunstan, deriving (I believe) from Command Prompt'sJoe Conway
2004-06-09Support assignment to subfields of composite columns in UPDATE and INSERT.Tom Lane
2004-06-06Infrastructure for I/O of composite types: arrange for the I/O routinesTom Lane
2004-06-05Tweak palloc/repalloc to allow zero bytes to be requested, as per recentTom Lane
2004-06-04Support assignment to whole-row variables in plpgsql; also fix glitchTom Lane
2004-06-04Allow plpgsql to pass composite-type arguments (ie, whole-row variables)Tom Lane
2004-06-03Restructure plpgsql's parsing of datatype declarations to unify theTom Lane
2004-06-03plpgsql hasn't needed -Wno-error for a good long while.Tom Lane
2004-05-30Use the new List API function names throughout the backend, and disable theNeil Conway
2004-05-26Reimplement the linked list data structure used throughout the backend.Neil Conway
2004-05-10Promote row expressions to full-fledged citizens of the expression syntax,Tom Lane
2004-05-07Solve the 'Turkish problem' with undesirable locale behavior for caseTom Lane
2004-04-15Improve syntax error messages for invalid-argument cases in RETURN andTom Lane
2004-04-01Replace TupleTableSlot convention for whole-row variables and functionTom Lane
2004-03-24Add a more useful error message for the case where someone tries to passTom Lane
2004-03-22Adds DLLIMPORT modifier to check_function_bodiesBruce Momjian
2004-03-21Revise syntax-error reporting behavior to give pleasant results forTom Lane
2004-03-19Create a validator for plpgsql, so that some minimal syntax checkingTom Lane
2004-03-17Reimplement CASE val WHEN compval1 THEN ... WHEN compval2 THEN ... ENDTom Lane
2004-02-25Teach plpgsql's lexer about dollar-quoted literals.Tom Lane
2004-02-24Add %option nodefault to all our flex lexers. Fix a couple of rule gapsTom Lane
2004-02-24Don't crash when a rowtype argument to a plpgsql function is NULL.Tom Lane
2004-02-21Implement a solution to the 'Turkish locale downcases I incorrectly'Tom Lane
2004-02-10Repair missing inclusions of -lintl for shared libraries.Tom Lane
2004-02-03Rename SortMem and VacuumMem to work_mem and maintenance_work_mem.Tom Lane
2004-01-24Fix problems with dropped columns in pltcl triggers, per report from Patrick ...Tom Lane
2004-01-21Fix bit-rot in support for building with --disable-shared. This patchTom Lane
2004-01-07More janitorial work: remove the explicit casting of NULL literals to aNeil Conway
2004-01-07Support function parameter names in plpgsql. This is the last ofTom Lane
2004-01-06Apply the core parts of Dennis Bjorklund's patch to allow functionTom Lane
2004-01-04Remove trailing semicolons from macro initializations in plpython.Bruce Momjian
2003-12-23Allow plpgsql variables' default value expressions to referenceTom Lane
2003-11-29$Header: -> $PostgreSQL Changes ...PostgreSQL Daemon
2003-10-30Allow the query for a plpgsql cursor to begin with '(' as well as 'SELECT'.Tom Lane
2003-10-01Add code to check that IF/WHILE/EXIT test expressions are boolean,Tom Lane