summaryrefslogtreecommitdiff
path: root/src/backend/commands/prepare.c
AgeCommit message (Expand)Author
2013-03-03Add a materialized view relations.Kevin Grittner
2013-01-01Update copyrights for 2013Bruce Momjian
2012-11-26Revert patch for taking fewer snapshots.Tom Lane
2012-08-10Centralize the logic for detecting misplaced aggregates, window funcs, etc.Tom Lane
2012-06-10Run pgindent on 9.2 source tree in preparation for first 9.3Bruce Momjian
2012-03-19Restructure SELECT INTO's parsetree representation into CreateTableAsStmt.Tom Lane
2012-01-01Update copyright notices for year 2012.Bruce Momjian
2011-12-21Take fewer snapshots.Robert Haas
2011-09-16Redesign the plancache mechanism for more flexibility and efficiency.Tom Lane
2011-09-09Move Timestamp/Interval typedefs and basic macros into datatype/timestamp.h.Tom Lane
2011-09-01Remove unnecessary #include references, per pgrminclude script.Bruce Momjian
2011-04-10pgindent run before PG 9.1 beta 1.Bruce Momjian
2011-03-19Revise collation derivation method and expression-tree representation.Tom Lane
2011-01-01Stamp copyrights for year 2011.Bruce Momjian
2010-10-25Refactor typenameTypeId()Peter Eisentraut
2010-09-20Remove cvs keywords from all files.Magnus Hagander
2010-01-02Update copyright for the year 2010.Bruce Momjian
2009-12-29Previous fix for temporary file management broke returning a set fromHeikki Linnakangas
2009-11-04Add support for invoking parser callback hooks via SPI and in cached plans.Tom Lane
2009-08-10Extend EXPLAIN to support output in XML or JSON format.Tom Lane
2009-07-26Extend EXPLAIN to allow generic options to be specified.Tom Lane
2009-06-118.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian
2009-01-02Include a pointer to the query's source text in QueryDesc structs. This isTom Lane
2009-01-01Update copyright for 2009.Bruce Momjian
2008-12-28Support window functions a la SQL:2008.Tom Lane
2008-12-13Remove pg_plan_queries()'s now-useless needSnapshot parameter. It's uselessTom Lane
2008-10-29Be more tense about not creating tuplestores with randomAccess = true unlessTom Lane
2008-08-28Extend the parser location infrastructure to include a location field inTom Lane
2008-08-25Move exprType(), exprTypmod(), expression_tree_walker(), and related routinesTom Lane
2008-07-21Add comment about the two different query strings that ExecuteQuery()Tom Lane
2008-07-18Adjust things so that the query_string of a cached plan and the sourceText ofTom Lane
2008-05-12Improve snapshot manager by keeping explicit track of snapshots.Alvaro Herrera
2008-05-12Restructure some header files a bit, in particular heapam.h, by removing someAlvaro Herrera
2008-04-02Revert my bad decision of about a year ago to make PortalDefineQueryTom Lane
2008-03-26Rename snapmgmt.c/h to snapmgr.c/h, for consistency with other files.Alvaro Herrera
2008-03-26Separate snapshot management code from tuple visibility code, create aAlvaro Herrera
2008-03-25Simplify and standardize conversions between TEXT datums and ordinary CTom Lane
2008-03-25Add a new tuplestore API function, tuplestore_putvalues(). This isNeil Conway
2008-01-01Update copyrights in source tree to 2008.Bruce Momjian
2007-11-15pgindent run for 8.3.Bruce Momjian
2007-11-11Ensure that typmod decoration on a datatype name is validated in all cases,Tom Lane
2007-06-23Separate parse-analysis for utility commands out of parser/analyze.cTom Lane
2007-05-25Create hooks to let a loadable plugin monitor (or even replace) the plannerTom Lane
2007-04-27Modify processing of DECLARE CURSOR and EXPLAIN so that they can resolve theTom Lane
2007-04-26Fix dynahash.c to suppress hash bucket splits while a hash_seq_search() scanTom Lane
2007-04-16Make plancache store cursor options so it can pass them to planner duringTom Lane
2007-04-16Expose more cursor-related functionality in SPI: specifically, allowTom Lane
2007-04-12RESET SESSION, plus related new DDL commands. Patch from Marko Kreen,Neil Conway
2007-03-13First phase of plan-invalidation project: create a plan cache managementTom Lane
2007-02-20Remove the Query structure from the executor's API. This allows us to stopTom Lane