summaryrefslogtreecommitdiff
path: root/src/pl/plpgsql
AgeCommit message (Expand)Author
2005-10-15Standard pgindent run for 8.1.Bruce Momjian
2005-10-13Fix small oversight in recent patch to add more CREATE-FUNCTION-timeTom Lane
2005-09-24Clean up possibly-uninitialized-variable warnings reported by gcc 4.x.Tom Lane
2005-09-14Fix recent breakage of decl_cursor_arglist syntax, per Michael Paesold.Tom Lane
2005-09-13Fix make_tuple_from_row to support nested rowtypes, per gripe fromTom Lane
2005-07-28Refactor exec_cast_value() and exec_simple_cast_value(): since they doNeil Conway
2005-07-28Fix breakage introduced in plpgsql CONTINUE patch.Tom Lane
2005-07-06Add a check for trigger function with declared arguments. This pathTom 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-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-20plpgsql's exec_assign_value() freed the old value of a variable beforeTom Lane
2005-06-19Fix typo in comment.Bruce 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-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-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
2005-03-29Convert oidvector and int2vector into variable-length arrays. ThisTom Lane
2005-03-25Make initialization of special trigger variables a little more readable.Tom Lane
2005-03-11Add fprintf() custom version to libpgport.Bruce Momjian
2005-02-24My patch this morning was overly hasty; revert code to original state.Tom Lane
2005-02-23Un-break plpgsql build by removing unwanted _() usage.Tom Lane
2005-02-22This patch changes makes some significant changes to how compilationNeil Conway
2005-02-22Use _() macro consistently rather than gettext(). Add translationBruce Momjian
2005-02-13Move plpgsql DEBUG from DEBUG2 to DEBUG1 because it is a user-requestedBruce Momjian
2005-02-01Adjust plpgsql to allow assignment to an element of an array that isTom Lane
2005-01-13Change exec_eval_simple_expr's param list allocation call fromTom Lane
2005-01-01Some more missed copyright notices. Many of these look like theyTom Lane
2004-12-21exec_eval_simple_expr() needs to do CommandCounterIncrement() not justTom Lane
2004-12-19plpgsql's exec_eval_simple_expr() now has to take responsibility forTom Lane
2004-12-17Allow 'ELSEIF' as an alternative to 'ELSIF' in PL/PgSQL. There have beenNeil Conway
2004-12-11Instead of supposing (wrongly, in the general case) that the rowtypeTom Lane
2004-11-30Fix a few typos in comments.Neil Conway