| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix three Python reference leaks in PLy_traceback(). This would result | Neil Conway | 2006-02-20 | 1 | -4/+6 |
| * | Apply code-reviewed version of for-scalar-list patch: mostly, fixing | Tom Lane | 2006-02-12 | 1 | -75/+93 |
| * | Allow PL/pgSQL FOR statement to return values to scalars as well as | Bruce Momjian | 2006-02-12 | 1 | -18/+75 |
| * | Clean up plpgsql grammar to make sure that check_assignable() is applied | Tom Lane | 2006-02-12 | 1 | -6/+39 |
| * | Undo perl's nasty locale setting on Windows. Since we can't do that as | Andrew Dunstan | 2006-01-28 | 1 | -1/+84 |
| * | Per a bug report from Theo Schlossnagle, plperl_return_next() leaks | Neil Conway | 2006-01-28 | 1 | -68/+113 |
| * | Clear up remaining compile warning for plperl on Windows. | Andrew Dunstan | 2006-01-12 | 1 | -1/+8 |
| * | Minor code clarity improvement: AFAICS, estate.eval_econtext must be | Neil Conway | 2006-01-10 | 1 | -5/+3 |
| * | In PLy_function_build_args(), the code loops repeatedly, constructing | Neil Conway | 2006-01-10 | 1 | -1/+2 |
| * | Minor code cleanup for PL/Python: fixup some strangely formatted comments, | Neil Conway | 2006-01-09 | 1 | -69/+47 |
| * | Rationalise perl header inclusions via a common include file, which also | Andrew Dunstan | 2006-01-08 | 5 | -43/+54 |
| * | Remove QNX port. | Bruce Momjian | 2006-01-05 | 1 | -8/+1 |
| * | Add checks to verify that a plpgsql function returning a rowtype is actually | Tom Lane | 2006-01-03 | 1 | -3/+41 |
| * | Index: src/pl/plpython/plpython.c | Neil Conway | 2005-12-29 | 1 | -17/+20 |
| * | Move declaration of check_function_bodies to where the perl headers | Andrew Dunstan | 2005-12-29 | 1 | -3/+4 |
| * | Fix plperl validator to honor check_function_bodies: when that is OFF, | Tom Lane | 2005-12-28 | 1 | -9/+47 |
| * | Move plpgsql's fetchArgInfo() into funcapi.c, and rename to | Tom Lane | 2005-12-28 | 2 | -117/+20 |
| * | Implement SQL-compliant treatment of row comparisons for < <= > >= cases | Tom Lane | 2005-12-28 | 1 | -1/+13 |
| * | Various cosmetic code cleanup for PL/Python: | Neil Conway | 2005-12-26 | 1 | -37/+48 |
| * | Allow installation into directories containing spaces in the name. | Peter Eisentraut | 2005-12-09 | 5 | -23/+23 |
| * | Fix core dump in error path of plpgsql_parse_tripwordtype. Somebody | Tom Lane | 2005-12-09 | 1 | -10/+10 |
| * | Re-run pgindent, fixing a problem where comment lines after a blank | Bruce Momjian | 2005-11-22 | 7 | -332/+331 |
| * | translate undef to NULL for result arrayref, now that we allow NULLs in array... | Andrew Dunstan | 2005-11-18 | 3 | -7/+11 |
| * | Mop-up for nulls-in-arrays patch: fix some places that access array | Tom Lane | 2005-11-18 | 1 | -27/+22 |
| * | Make SQL arrays support null elements. This commit fixes the core array | Tom Lane | 2005-11-17 | 2 | -17/+17 |
| * | Ensure that a plpgsql LOOP with an empty body still executes at least | Tom Lane | 2005-10-24 | 1 | -1/+12 |
| * | Code review for spi_query/spi_fetchrow patch: handle errors sanely, | Tom Lane | 2005-10-18 | 2 | -23/+130 |
| * | Standard pgindent run for 8.1. | Bruce Momjian | 2005-10-15 | 10 | -971/+965 |
| * | Fix small oversight in recent patch to add more CREATE-FUNCTION-time | Tom Lane | 2005-10-13 | 1 | -1/+3 |
| * | Add an expected case to cover error message as spelled by python 2.2.3. | Tom Lane | 2005-10-04 | 1 | -0/+38 |
| * | Clean up possibly-uninitialized-variable warnings reported by gcc 4.x. | Tom Lane | 2005-09-24 | 1 | -16/+14 |
| * | Fix recent breakage of decl_cursor_arglist syntax, per Michael Paesold. | Tom Lane | 2005-09-14 | 1 | -5/+5 |
| * | Fix make_tuple_from_row to support nested rowtypes, per gripe from | Tom Lane | 2005-09-13 | 1 | -15/+16 |
| * | 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 |