summaryrefslogtreecommitdiff
path: root/src/pl
Commit message (Expand)AuthorAgeFilesLines
* Ensure that a plpgsql LOOP with an empty body still executes at leastTom Lane2005-10-241-1/+12
* Code review for spi_query/spi_fetchrow patch: handle errors sanely,Tom Lane2005-10-182-23/+130
* Standard pgindent run for 8.1.Bruce Momjian2005-10-1510-971/+965
* Fix small oversight in recent patch to add more CREATE-FUNCTION-timeTom Lane2005-10-131-1/+3
* Add an expected case to cover error message as spelled by python 2.2.3.Tom Lane2005-10-041-0/+38
* Clean up possibly-uninitialized-variable warnings reported by gcc 4.x.Tom Lane2005-09-241-16/+14
* Fix recent breakage of decl_cursor_arglist syntax, per Michael Paesold.Tom Lane2005-09-141-5/+5
* Fix make_tuple_from_row to support nested rowtypes, per gripe fromTom Lane2005-09-131-15/+16
* Make the plperl regression tests pass in 'use_strict' mode, by addingTom Lane2005-08-242-6/+6
* Get rid of inappropriate use of croak(). Per report from Michael Fuhr.Tom Lane2005-08-241-2/+2
* Fix up plperl 'use_strict' so that it can be enabled or disabled on theTom Lane2005-08-243-83/+139
* Invoke mksafefunc and mkunsafefunc with :: decoration. This seems a goodTom Lane2005-08-201-2/+2
* Back out plpython makefile change.Bruce Momjian2005-08-121-2/+2
* Un-break plperl for non-set case.Tom Lane2005-08-121-11/+15
* More rsi assignment line too.Bruce Momjian2005-08-121-4/+4
* Cleanups for FreeBSD linking (PIC) and plpython compiles.Bruce Momjian2005-08-121-2/+2
* > The attached patch moves a plperl sanity check into the correctBruce Momjian2005-08-121-11/+11
* Refactor exec_cast_value() and exec_simple_cast_value(): since they doNeil Conway2005-07-281-17/+17
* Fix breakage introduced in plpgsql CONTINUE patch.Tom Lane2005-07-281-3/+3
* Add variant expected file to cope with different spelling of a PythonTom Lane2005-07-241-0/+38
* Remove extraneous space after -L ... it confuses SHLIB_LINK filter -LTom Lane2005-07-131-2/+2
* Fix plperl crash with list value return for an array result type.Tom Lane2005-07-121-3/+3
* Fix plperl to do recursion safely, and fix a problem with array results.Tom Lane2005-07-123-19/+128
* Rename xmalloc to pg_malloc for consistency with psql usage.Bruce Momjian2005-07-101-1/+2
* Following up a previous thought I had, yesterday I realised how toBruce Momjian2005-07-101-6/+75
* The attached patch implements spi_query() and spi_fetchrow() functionsBruce Momjian2005-07-105-1/+125
* This patch addresses the problem mentioned in the "process crashBruce Momjian2005-07-107-4/+100
* Fix plperl expected output.Bruce Momjian2005-07-071-1/+0
* Currently, nonfatal warnings are not trapped (as they should be) byBruce Momjian2005-07-064-2/+54
* Currently, nonfatal warnings are not trapped (as they should be) byBruce Momjian2005-07-062-3/+7
* Add a check for trigger function with declared arguments. This pathTom Lane2005-07-061-1/+8
* Back out patch. This should be done like other server-side languages.Bruce Momjian2005-07-052-28/+1
* This patch allows the PL/Python module to do (SRF) functions.Bruce Momjian2005-07-042-1/+28
* Fix memory leak in plperl_hash_from_tuple(), per report from Jean-Max Reymond.Tom Lane2005-07-031-4/+6
* Add E'' to internally created SQL strings that contain backslashes.Bruce Momjian2005-07-021-5/+8
* In PL/PgSQL, allow a block's label to be optionally specified at theNeil Conway2005-07-021-32/+72
* Clarify code to double \\ and '.Bruce Momjian2005-07-011-2/+2
* Add Oracle-compatible GREATEST and LEAST functions. Pavel StehuleTom Lane2005-06-261-1/+11
* Code review for escape-strings patch. Sync psql and plpgsql lexersTom Lane2005-06-261-3/+32
* Add a validator function for plperl. Andrew DunstanTom Lane2005-06-221-5/+45
* Fix bug in CONTINUE statement for PL/pgSQL: when we continue a loop,Neil Conway2005-06-221-21/+26
* Add a CONTINUE statement to PL/PgSQL, which can be used to begin theNeil Conway2005-06-225-62/+194
* exec_eval_datum leaks memory when dealing with ROW or REC values.Tom Lane2005-06-201-29/+28
* Remove read_file/write_file tests. These were originally intended toTom Lane2005-06-204-33/+0
* plpgsql's exec_assign_value() freed the old value of a variable beforeTom Lane2005-06-201-15/+32
* Fix typo in comment.Bruce Momjian2005-06-191-2/+2
* > Here's a patch I added against plperl, originally against beta5, nowBruce Momjian2005-06-151-3/+14
* Allow the parameters to PL/PgSQL's RAISE statement to be expressions,Neil Conway2005-06-144-61/+56
* Cleanup for "#option dump" in PL/PgSQL: don't print empty ELSE blocks,Neil Conway2005-06-141-7/+21
* Implement two new special variables in PL/PgSQL: SQLSTATE and SQLERRM.Neil Conway2005-06-105-33/+92