summaryrefslogtreecommitdiff
path: root/src/pl
AgeCommit message (Expand)Author
2003-09-16Fix some problems with dropped columns in plpython trigger functions.Tom Lane
2003-09-14Make pltcl create separate function objects when the same function isTom Lane
2003-09-14Fix plpython to generate separate cached procedure data for eachTom Lane
2003-09-04Looks like plperl has same bug as pltcl.Tom Lane
2003-09-04Fix some problems with dropped columns in pltcl functions.Tom Lane
2003-08-18When compiling a plpgsql trigger function, include the OID of the tableTom Lane
2003-08-08Another pgindent run with updated typedefs.Bruce Momjian
2003-08-08Avoid malloc(0). Although standard mallocs seem not to object,Tom Lane
2003-08-04Fix pltcl and plpython to support STATEMENT triggers.Tom Lane
2003-08-04Put back braces removed by pgindent (not really pgindent's fault).Tom Lane
2003-08-04pgindent run.Bruce Momjian
2003-07-31Cause library-preload feature to report error if specified initializationTom Lane
2003-07-28A visit from the message-style police ...Tom Lane
2003-07-27elog mop-up: bring some straggling fprintf(stderr)'s into the elog world.Tom Lane
2003-07-27Fix some localizability issues with existing errcontext() calls.Tom Lane
2003-07-27elog mop-up.Tom Lane
2003-07-26>>You can alias $0, similar to the argument variables. And, I confirmedBruce Momjian
2003-07-26Update to match error editing.Tom Lane
2003-07-25Error message editing in src/pl. The plpython module could use anotherTom Lane
2003-07-01Support polymorphic functions in plpgsql. Along the way, replaceTom Lane
2003-06-30Rename plpython to plpythonu, and update documentation to reflect itsTom Lane
2003-06-29Support expressions of the form 'scalar op ANY (array)' andTom Lane
2003-06-25> I've worked with the Pl/Python code in the past and will see about removingBruce Momjian
2003-06-19Disallow dollar sign in operator names, instead allow it as a non-firstTom Lane
2003-06-17Fix error line numbers reported for errors in plpgsql_parse_word andTom Lane
2003-06-11Fix brain damage in deciding which python input converter to use.Tom Lane
2003-05-29Ensure that in all flex lexers that are part of the backend, aTom Lane
2003-05-27Make debug_ GUC varables output DEBUG1 rather than LOG, and mention inBruce Momjian
2003-05-23Seems pl_funcs didn't have support for plpgsql PERFORM statement.Tom Lane
2003-05-16Small changes to use the absolute path to system catalogs.Tom Lane
2003-05-05Alter plpgsql's lexer so that yylineno and yymore are not used. ThisTom Lane
2003-04-27Fix plpgsql so that variables of composite types (rowtypes) can beTom Lane
2003-04-24Infrastructure for upgraded error reporting mechanism. elog.c isTom Lane
2003-04-20Fix multiple causes of breakage in plperl's error handling.Tom Lane
2003-04-08First phase of work on array improvements. ARRAY[x,y,z] constructorTom Lane
2003-03-27It may not be obvious to you, but the plpython regression testsBruce Momjian
2003-03-27This patch implements holdable cursors, following the proposalBruce Momjian
2003-03-25plpgsql can assign to subscripted variables now, e.g.Tom Lane
2003-03-25Factor out duplicate code for computing values of PLpgSQL_datum items.Tom Lane
2003-03-10This patch fixes a bunch of spelling mistakes in comments throughout theTom Lane
2003-03-09Revise tuplestore and nodeMaterial so that we don't have to read theTom Lane
2003-03-02Repair memory leak introduced by recent change to make SPI return aTom Lane
2003-02-16COALESCE() and NULLIF() are now first-class expressions, not macrosTom Lane
2003-02-13Repair incorrect indexing for atttypmod, per Brad McLean.Tom Lane
2003-02-06Fix core dump when pltcl_elog is called with wrong number of parameters,Tom Lane
2003-02-03Determine the set of constraints applied to a domain at executorTom Lane
2003-01-31Make plpython's spi_execute interface handle NULLs properly.Tom Lane
2003-01-31Clean up plpython error reporting so that its regression test passesTom Lane
2003-01-31Handle mixed-case names properly in plpgsql_parse_tripwordtype.Tom Lane
2003-01-21Fix coredump problem in plpgsql's RETURN NEXT. When a SELECT INTOTom Lane