summaryrefslogtreecommitdiff
path: root/src/pl
AgeCommit message (Expand)Author
2005-06-14Cleanup for "#option dump" in PL/PgSQL: don't print empty ELSE blocks,Neil Conway
2005-06-10Implement two new special variables in PL/PgSQL: SQLSTATE and SQLERRM.Neil Conway
2005-06-08Correct an omission in the syntax error message emitted by EXECUTE INTONeil Conway
2005-06-07Add support for an optional INTO clause to PL/PgSQL's EXECUTE command.Neil Conway
2005-06-05Here's a patch to do the following:Bruce Momjian
2005-06-04At 2005-05-21 20:18:50 +0530, [email protected] wrote:Bruce Momjian
2005-05-29Modify hash_search() API to prevent future occurrences of the errorTom Lane
2005-05-26Back out SQLSTATE and SQLERRM support.Bruce Momjian
2005-05-26Minor cleanup for recent SQLSTATE / SQLERRM patch: spell "successful"Neil Conway
2005-05-26Add PL/pgSQL SQLSTATE and SQLERRM support which sets these values onBruce Momjian
2005-05-24Fix PL makefiles to support running regression tests in VPATH builds.Tom Lane
2005-05-24Add regression tests for previously-untested PL/Perl features. FromNeil Conway
2005-05-23Fix typo in PL/Perl Safe.pm initialization that prevented the properNeil Conway
2005-05-17Add a --dbname option to the pg_regress script, and use pl_regressionTom Lane
2005-05-14Convert the existing regression test scripts for the various optionalTom Lane
2005-05-06For some reason access/tupmacs.h has been #including utils/memutils.h,Tom Lane
2005-05-02Change SPI functions to use a `long' when specifying the number of tuplesNeil Conway
2005-05-01Change CREATE TYPE to require datatype output and send functions to haveTom Lane
2005-04-14Completion of project to use fixed OIDs for all system catalogs andTom Lane
2005-04-07Allow plpgsql functions to omit RETURN command when the function returnsTom Lane
2005-04-05Adjust grammar for plpgsql's OPEN command so that a cursor can beTom Lane
2005-04-05plpgsql does OUT parameters, as per my proposal a few weeks ago.Tom Lane
2005-04-01Make plperl work with OUT parameters.Tom Lane
2005-04-01Minor improvements in the really-pretty-ad-hoc test scripts for theTom Lane
2005-03-29Convert oidvector and int2vector into variable-length arrays. ThisTom Lane
2005-03-25Make initialization of special trigger variables a little more readable.Tom Lane
2005-03-24Fix python regression testing script to bail out early if languageTom Lane
2005-03-24Adjust plpython to convert \r\n and \r to \n in Python scripts,Tom Lane
2005-03-11Add fprintf() custom version to libpgport.Bruce Momjian
2005-02-24My patch this morning was overly hasty; revert code to original state.Tom Lane
2005-02-23Un-break plpgsql build by removing unwanted _() usage.Tom Lane
2005-02-23Properly undef _(x) gettext macro.Bruce Momjian
2005-02-22This patch changes makes some significant changes to how compilationNeil Conway
2005-02-22Use _() macro consistently rather than gettext(). Add translationBruce Momjian
2005-02-13Move plpgsql DEBUG from DEBUG2 to DEBUG1 because it is a user-requestedBruce Momjian
2005-02-01Adjust plpgsql to allow assignment to an element of an array that isTom Lane
2005-01-14plperl trigger handler tried to fetch new/old tuples even when firedTom Lane
2005-01-13Change exec_eval_simple_expr's param list allocation call fromTom Lane
2005-01-11plperl was not being quite paranoid enough about detecting 'undef' valuesTom Lane
2005-01-01Some more missed copyright notices. Many of these look like theyTom Lane
2004-12-21exec_eval_simple_expr() needs to do CommandCounterIncrement() not justTom Lane
2004-12-19plpgsql's exec_eval_simple_expr() now has to take responsibility forTom Lane
2004-12-17Allow 'ELSEIF' as an alternative to 'ELSIF' in PL/PgSQL. There have beenNeil Conway
2004-12-17Hook up the plpython result-object nrows and status methods correctly.Tom Lane
2004-12-16Cause configure --with-tcl to check for presence of <tcl.h>, as perTom Lane
2004-12-11Instead of supposing (wrongly, in the general case) that the rowtypeTom Lane
2004-11-30Fix a few typos in comments.Neil Conway
2004-11-29Update plperl to use ereport() not elog() for user-facing messages,Tom Lane
2004-11-24Avoid getting bit by roundoff error while checking $Safe::VERSION.Tom Lane
2004-11-23Further plperl cleanup: be more paranoid about checking the type ofTom Lane