| Commit message (Expand) | Author | Age | Files | Lines |
| * | Make the plperl regression tests pass in 'use_strict' mode, by adding | Tom Lane | 2005-08-24 | 2 | -6/+6 |
| * | Get rid of inappropriate use of croak(). Per report from Michael Fuhr. | Tom Lane | 2005-08-24 | 1 | -2/+2 |
| * | Fix up plperl 'use_strict' so that it can be enabled or disabled on the | Tom Lane | 2005-08-24 | 3 | -83/+139 |
| * | Invoke mksafefunc and mkunsafefunc with :: decoration. This seems a good | Tom Lane | 2005-08-20 | 1 | -2/+2 |
| * | Back out plpython makefile change. | Bruce Momjian | 2005-08-12 | 1 | -2/+2 |
| * | Un-break plperl for non-set case. | Tom Lane | 2005-08-12 | 1 | -11/+15 |
| * | More rsi assignment line too. | Bruce Momjian | 2005-08-12 | 1 | -4/+4 |
| * | Cleanups for FreeBSD linking (PIC) and plpython compiles. | Bruce Momjian | 2005-08-12 | 1 | -2/+2 |
| * | > The attached patch moves a plperl sanity check into the correct | Bruce Momjian | 2005-08-12 | 1 | -11/+11 |
| * | Refactor exec_cast_value() and exec_simple_cast_value(): since they do | Neil Conway | 2005-07-28 | 1 | -17/+17 |
| * | Fix breakage introduced in plpgsql CONTINUE patch. | Tom Lane | 2005-07-28 | 1 | -3/+3 |
| * | Add variant expected file to cope with different spelling of a Python | Tom Lane | 2005-07-24 | 1 | -0/+38 |
| * | Remove extraneous space after -L ... it confuses SHLIB_LINK filter -L | Tom Lane | 2005-07-13 | 1 | -2/+2 |
| * | Fix plperl crash with list value return for an array result type. | Tom Lane | 2005-07-12 | 1 | -3/+3 |
| * | Fix plperl to do recursion safely, and fix a problem with array results. | Tom Lane | 2005-07-12 | 3 | -19/+128 |
| * | Rename xmalloc to pg_malloc for consistency with psql usage. | Bruce Momjian | 2005-07-10 | 1 | -1/+2 |
| * | Following up a previous thought I had, yesterday I realised how to | Bruce Momjian | 2005-07-10 | 1 | -6/+75 |
| * | The attached patch implements spi_query() and spi_fetchrow() functions | Bruce Momjian | 2005-07-10 | 5 | -1/+125 |
| * | This patch addresses the problem mentioned in the "process crash | Bruce Momjian | 2005-07-10 | 7 | -4/+100 |
| * | Fix plperl expected output. | Bruce Momjian | 2005-07-07 | 1 | -1/+0 |
| * | Currently, nonfatal warnings are not trapped (as they should be) by | Bruce Momjian | 2005-07-06 | 4 | -2/+54 |
| * | Currently, nonfatal warnings are not trapped (as they should be) by | Bruce Momjian | 2005-07-06 | 2 | -3/+7 |
| * | Add a check for trigger function with declared arguments. This path | Tom Lane | 2005-07-06 | 1 | -1/+8 |
| * | Back out patch. This should be done like other server-side languages. | Bruce Momjian | 2005-07-05 | 2 | -28/+1 |
| * | This patch allows the PL/Python module to do (SRF) functions. | Bruce Momjian | 2005-07-04 | 2 | -1/+28 |
| * | Fix memory leak in plperl_hash_from_tuple(), per report from Jean-Max Reymond. | Tom Lane | 2005-07-03 | 1 | -4/+6 |
| * | Add E'' to internally created SQL strings that contain backslashes. | Bruce Momjian | 2005-07-02 | 1 | -5/+8 |
| * | In PL/PgSQL, allow a block's label to be optionally specified at the | Neil Conway | 2005-07-02 | 1 | -32/+72 |
| * | Clarify code to double \\ and '. | Bruce Momjian | 2005-07-01 | 1 | -2/+2 |
| * | Add Oracle-compatible GREATEST and LEAST functions. Pavel Stehule | Tom Lane | 2005-06-26 | 1 | -1/+11 |
| * | Code review for escape-strings patch. Sync psql and plpgsql lexers | Tom Lane | 2005-06-26 | 1 | -3/+32 |
| * | Add a validator function for plperl. Andrew Dunstan | Tom Lane | 2005-06-22 | 1 | -5/+45 |
| * | Fix bug in CONTINUE statement for PL/pgSQL: when we continue a loop, | Neil Conway | 2005-06-22 | 1 | -21/+26 |
| * | Add a CONTINUE statement to PL/PgSQL, which can be used to begin the | Neil Conway | 2005-06-22 | 5 | -62/+194 |
| * | exec_eval_datum leaks memory when dealing with ROW or REC values. | Tom Lane | 2005-06-20 | 1 | -29/+28 |
| * | Remove read_file/write_file tests. These were originally intended to | Tom Lane | 2005-06-20 | 4 | -33/+0 |
| * | plpgsql's exec_assign_value() freed the old value of a variable before | Tom Lane | 2005-06-20 | 1 | -15/+32 |
| * | Fix typo in comment. | Bruce Momjian | 2005-06-19 | 1 | -2/+2 |
| * | > Here's a patch I added against plperl, originally against beta5, now | Bruce Momjian | 2005-06-15 | 1 | -3/+14 |
| * | Allow the parameters to PL/PgSQL's RAISE statement to be expressions, | Neil Conway | 2005-06-14 | 4 | -61/+56 |
| * | Cleanup for "#option dump" in PL/PgSQL: don't print empty ELSE blocks, | Neil Conway | 2005-06-14 | 1 | -7/+21 |
| * | Implement two new special variables in PL/PgSQL: SQLSTATE and SQLERRM. | Neil Conway | 2005-06-10 | 5 | -33/+92 |
| * | Correct an omission in the syntax error message emitted by EXECUTE INTO | Neil Conway | 2005-06-08 | 1 | -7/+6 |
| * | Add support for an optional INTO clause to PL/PgSQL's EXECUTE command. | Neil Conway | 2005-06-07 | 3 | -6/+76 |
| * | Here's a patch to do the following: | Bruce Momjian | 2005-06-05 | 4 | -54/+49 |
| * | At 2005-05-21 20:18:50 +0530, ams@oryx.com wrote: | Bruce Momjian | 2005-06-04 | 3 | -284/+241 |
| * | Modify hash_search() API to prevent future occurrences of the error | Tom Lane | 2005-05-29 | 1 | -5/+1 |
| * | Back out SQLSTATE and SQLERRM support. | Bruce Momjian | 2005-05-26 | 3 | -80/+11 |
| * | Minor cleanup for recent SQLSTATE / SQLERRM patch: spell "successful" | Neil Conway | 2005-05-26 | 2 | -9/+9 |
| * | Add PL/pgSQL SQLSTATE and SQLERRM support which sets these values on | Bruce Momjian | 2005-05-26 | 3 | -10/+79 |