summaryrefslogtreecommitdiff
path: root/src/backend/commands/prepare.c
AgeCommit message (Expand)Author
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
2007-01-28Remove some unnecessary conversion work in build_regtype_array().Tom Lane
2007-01-05Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian
2006-10-04pgindent run for 8.2.Bruce Momjian
2006-09-27Replace strncpy with strlcpy in selected places that seem possibly relevantTom Lane
2006-09-07Clean up logging for extended-query-protocol operations, as per my recentTom Lane
2006-09-06Change processing of extended-Query mode so that an unnamed statementTom Lane
2006-08-29Now bind displays prepare as detail, and execute displays prepare andBruce Momjian
2006-08-14Fix oversight in initial implementation of PORTAL_ONE_RETURNING mode: weTom Lane
2006-08-12Add INSERT/UPDATE/DELETE RETURNING, with basic docs and regression tests.Tom Lane
2006-08-08For protocol-level prepare/bind/execute:Bruce Momjian
2006-07-14Remove 576 references of include files that were not needed.Bruce Momjian
2006-07-13Allow include files to compile own their own.Bruce Momjian
2006-07-11Alphabetically order reference to include files, "N" - "S".Bruce Momjian
2006-07-03Code review for FILLFACTOR patch. Change WITH grammar as per earlierTom Lane
2006-07-02Add FILLFACTOR to CREATE INDEX.Bruce Momjian
2006-06-20Remove redundant gettimeofday() calls to the extent practical withoutTom Lane
2006-04-25Back out RESET CONNECTION until there is more discussion.Bruce Momjian
2006-04-25Add RESET CONNECTION, to reset all aspects of a session.Bruce Momjian
2006-04-22Simplify ParamListInfo data structure to support only numbered parameters,Tom Lane
2006-03-05Update copyright for 2006. Update scripts.Bruce Momjian
2006-02-19Add TABLESPACE and ON COMMIT clauses to CREATE TABLE AS. ON COMMIT isNeil Conway
2006-01-18Add a new system view, pg_cursors, that displays the currently availableNeil Conway