summaryrefslogtreecommitdiff
path: root/src/pl
AgeCommit message (Expand)Author
2005-07-13Remove extraneous space after -L ... it confuses SHLIB_LINK filter -LTom Lane
2005-07-12Fix plperl crash with list value return for an array result type.Tom Lane
2005-07-12Fix plperl to do recursion safely, and fix a problem with array results.Tom Lane
2005-07-10Rename xmalloc to pg_malloc for consistency with psql usage.Bruce Momjian
2005-07-10Following up a previous thought I had, yesterday I realised how toBruce Momjian
2005-07-10The attached patch implements spi_query() and spi_fetchrow() functionsBruce Momjian
2005-07-10This patch addresses the problem mentioned in the "process crashBruce Momjian
2005-07-07Fix plperl expected output.Bruce Momjian
2005-07-06Currently, nonfatal warnings are not trapped (as they should be) byBruce Momjian
2005-07-06Currently, nonfatal warnings are not trapped (as they should be) byBruce Momjian
2005-07-06Add a check for trigger function with declared arguments. This pathTom Lane
2005-07-05Back out patch. This should be done like other server-side languages.Bruce Momjian
2005-07-04This patch allows the PL/Python module to do (SRF) functions.Bruce Momjian
2005-07-03Fix memory leak in plperl_hash_from_tuple(), per report from Jean-Max Reymond.Tom Lane
2005-07-02Add E'' to internally created SQL strings that contain backslashes.Bruce Momjian
2005-07-02In PL/PgSQL, allow a block's label to be optionally specified at theNeil Conway
2005-07-01Clarify code to double \\ and '.Bruce Momjian
2005-06-26Add Oracle-compatible GREATEST and LEAST functions. Pavel StehuleTom Lane
2005-06-26Code review for escape-strings patch. Sync psql and plpgsql lexersTom Lane
2005-06-22Add a validator function for plperl. Andrew DunstanTom Lane
2005-06-22Fix bug in CONTINUE statement for PL/pgSQL: when we continue a loop,Neil Conway
2005-06-22Add a CONTINUE statement to PL/PgSQL, which can be used to begin theNeil Conway
2005-06-20exec_eval_datum leaks memory when dealing with ROW or REC values.Tom Lane
2005-06-20Remove read_file/write_file tests. These were originally intended toTom Lane
2005-06-20plpgsql's exec_assign_value() freed the old value of a variable beforeTom Lane
2005-06-19Fix typo in comment.Bruce Momjian
2005-06-15> Here's a patch I added against plperl, originally against beta5, nowBruce Momjian
2005-06-14Allow the parameters to PL/PgSQL's RAISE statement to be expressions,Neil Conway
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, ams@oryx.com 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