summaryrefslogtreecommitdiff
path: root/src/pl/plpgsql
Commit message (Expand)AuthorAgeFilesLines
* 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 a check for trigger function with declared arguments. This pathTom Lane2005-07-061-1/+8
* 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
* 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
* 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
* 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
* Correct an omission in the syntax error message emitted by EXECUTE INTONeil Conway2005-06-081-7/+6
* Add support for an optional INTO clause to PL/PgSQL's EXECUTE command.Neil Conway2005-06-073-6/+76
* Modify hash_search() API to prevent future occurrences of the errorTom Lane2005-05-291-5/+1
* Back out SQLSTATE and SQLERRM support.Bruce Momjian2005-05-263-80/+11
* Minor cleanup for recent SQLSTATE / SQLERRM patch: spell "successful"Neil Conway2005-05-262-9/+9
* Add PL/pgSQL SQLSTATE and SQLERRM support which sets these values onBruce Momjian2005-05-263-10/+79
* For some reason access/tupmacs.h has been #including utils/memutils.h,Tom Lane2005-05-062-2/+4
* Change SPI functions to use a `long' when specifying the number of tuplesNeil Conway2005-05-021-3/+3
* Change CREATE TYPE to require datatype output and send functions to haveTom Lane2005-05-011-7/+3
* Completion of project to use fixed OIDs for all system catalogs andTom Lane2005-04-141-2/+1
* Allow plpgsql functions to omit RETURN command when the function returnsTom Lane2005-04-073-11/+51
* Adjust grammar for plpgsql's OPEN command so that a cursor can beTom Lane2005-04-051-22/+8
* plpgsql does OUT parameters, as per my proposal a few weeks ago.Tom Lane2005-04-055-335/+528
* Convert oidvector and int2vector into variable-length arrays. ThisTom Lane2005-03-292-7/+7
* Make initialization of special trigger variables a little more readable.Tom Lane2005-03-251-14/+16
* Add fprintf() custom version to libpgport.Bruce Momjian2005-03-111-1/+2
* My patch this morning was overly hasty; revert code to original state.Tom Lane2005-02-241-2/+2
* Un-break plpgsql build by removing unwanted _() usage.Tom Lane2005-02-231-2/+2
* This patch changes makes some significant changes to how compilationNeil Conway2005-02-227-922/+837
* Use _() macro consistently rather than gettext(). Add translationBruce Momjian2005-02-221-2/+2
* Move plpgsql DEBUG from DEBUG2 to DEBUG1 because it is a user-requestedBruce Momjian2005-02-131-2/+2
* Adjust plpgsql to allow assignment to an element of an array that isTom Lane2005-02-011-16/+41
* Change exec_eval_simple_expr's param list allocation call fromTom Lane2005-01-131-2/+2
* Some more missed copyright notices. Many of these look like theyTom Lane2005-01-011-2/+2
* exec_eval_simple_expr() needs to do CommandCounterIncrement() not justTom Lane2004-12-211-2/+6
* plpgsql's exec_eval_simple_expr() now has to take responsibility forTom Lane2004-12-191-7/+34
* Allow 'ELSEIF' as an alternative to 'ELSIF' in PL/PgSQL. There have beenNeil Conway2004-12-171-1/+2
* Instead of supposing (wrongly, in the general case) that the rowtypeTom Lane2004-12-111-1/+4
* Fix a few typos in comments.Neil Conway2004-11-302-7/+7
* While fixing plperl and pltcl, I realized plpgsql wasn't doingTom Lane2004-11-211-16/+12
* Rethink plpgsql's way of handling SPI execution during an exception block.Tom Lane2004-11-161-18/+13
* Remove three unnecessary casts from a pointer type to char * when callingNeil Conway2004-10-251-3/+3
* plpgsql EXIT construct forgot to downcase or quote-strip its identifierTom Lane2004-10-121-2/+13
* Cosmetic improvements/code cleanup:Neil Conway2004-10-101-3/+3