summaryrefslogtreecommitdiff
path: root/src/pl/plpgsql
AgeCommit message (Expand)Author
2012-01-01Update copyright notices for year 2012.Bruce Momjian
2011-12-14Add support for passing cursor parameters in named notation in PL/pgSQL.Heikki Linnakangas
2011-11-30Improve table locking behavior in the face of current DDL.Robert Haas
2011-11-27Use the proper macro to convert a bool to a Datum.Tom Lane
2011-11-21Further code review for range types patch.Tom Lane
2011-11-12In plpgsql, allow foreign tables to define row types.Tom Lane
2011-11-03Support range data types.Heikki Linnakangas
2011-11-01Clean up whitespace and indentation in parser and scanner filesPeter Eisentraut
2011-10-27Avoid recursion while processing ELSIF lists in plpgsql.Tom Lane
2011-09-26Speed up array element assignment in plpgsql by caching type information.Tom Lane
2011-09-19Fix another Assert issue exposed by CLOBBER_CACHE_ALWAYS.Tom Lane
2011-09-16Ensure generic plan gets used for a plpgsql expression with no parameters.Tom Lane
2011-09-16Redesign the plancache mechanism for more flexibility and efficiency.Tom Lane
2011-09-04Clean up the #include mess a little.Tom Lane
2011-09-01Remove unnecessary #include references, per pgrminclude script.Bruce Momjian
2011-08-26Add another marker.Bruce Momjian
2011-08-17Translation updatesPeter Eisentraut
2011-07-18Add GET STACKED DIAGNOSTICS plpgsql command to retrieve exception info.Tom Lane
2011-07-16Replace errdetail("%s", ...) with errdetail_internal("%s", ...).Tom Lane
2011-07-09Try to acquire relation locks in RangeVarGetRelid.Robert Haas
2011-07-04Move Trigger and TriggerDesc structs out of rel.h into a new reltrigger.hAlvaro Herrera
2011-07-03Put comments on the installable procedural languages.Tom Lane
2011-06-26Add the possibility to pass --flag arguments to xgettext callsPeter Eisentraut
2011-06-26Refactor common gettext triggersPeter Eisentraut
2011-06-26Make _ be automatically included in GETTEXT_TRIGGERSPeter Eisentraut
2011-06-26Replace := by = in nls.mk filesPeter Eisentraut
2011-06-26Remove some cruft from nls.mk filesPeter Eisentraut
2011-06-09Translation updates for 9.1beta2Peter Eisentraut
2011-06-09Pgindent run before 9.1 beta2.Bruce Momjian
2011-05-23Make plpgsql complain about conflicting IN and OUT parameter names.Tom Lane
2011-05-22Make plpgsql provide the typmods for its variables to the main parser.Tom Lane
2011-05-20Message style improvementsPeter Eisentraut
2011-05-01Rewrite installation makefile rules without for loopsPeter Eisentraut
2011-04-17Support a COLLATE clause in plpgsql variable declarations.Tom Lane
2011-04-12Pass collations to functions in FunctionCallInfoData, not FmgrInfo.Tom Lane
2011-04-11Clean up most -Wunused-but-set-variable warnings from gcc 4.6Peter Eisentraut
2011-04-10pgindent run before PG 9.1 beta 1.Bruce Momjian
2011-04-07Revise the API for GUC variable assign hooks.Tom Lane
2011-03-27Fix plpgsql to release SPI plans when a function or DO block is freed.Tom Lane
2011-03-26Clean up cruft around collation initialization for tupdescs and scankeys.Tom Lane
2011-03-25Fix collation handling in plpgsql functions.Tom Lane
2011-03-20Revise collation derivation method and expression-tree representation.Tom Lane
2011-03-16Add hint suggesting the use of EXECUTE CREATE TABLE ... AS for EXECUTE INTO.Bruce Momjian
2011-03-11Split CollateClause into separate raw and analyzed node types.Tom Lane
2011-03-10Remove collation information from TypeName, where it does not belong.Tom Lane
2011-03-05Fix parallel gmake for extension directory addition in PL languages.Bruce Momjian
2011-03-05Create extension infrastructure for the core procedural languages.Tom Lane
2011-02-16Add FOREACH IN ARRAY looping to plpgsql.Tom Lane
2011-02-08Per-column collation supportPeter Eisentraut
2011-02-04Unbreak the VPATH build.Robert Haas