summaryrefslogtreecommitdiff
path: root/src/backend/tcop/pquery.c
Commit message (Expand)AuthorAgeFilesLines
* Stamp copyrights for year 2011.Bruce Momjian2011-01-011-1/+1
* Remove cvs keywords from all files.Magnus Hagander2010-09-201-1/+1
* SERIALIZABLE transactions are actually implemented beneath the covers withJoe Conway2010-09-111-3/+3
* pgindent run for 9.0Bruce Momjian2010-02-261-12/+12
* Have SELECT and CREATE TABLE AS queries return a row count. While thisBruce Momjian2010-02-161-23/+23
* Improve C comment about why we return "0 0" for some tags.Bruce Momjian2010-02-131-4/+9
* Update copyright for the year 2010.Bruce Momjian2010-01-021-2/+2
* Add an EXPLAIN (BUFFERS) option to show buffer-usage statistics.Robert Haas2009-12-151-6/+6
* Split the processing of INSERT/UPDATE/DELETE operations out of execMain.c.Tom Lane2009-10-101-6/+6
* 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian2009-06-111-6/+6
* Fix possible failures when a tuplestore switches from in-memory to on-diskTom Lane2009-03-271-2/+3
* Include a pointer to the query's source text in QueryDesc structs. This isTom Lane2009-01-021-2/+12
* Update copyright for 2009.Bruce Momjian2009-01-011-2/+2
* Ensure that the contents of a holdable cursor don't depend on out-of-lineTom Lane2008-12-011-2/+3
* Clean up the API for DestReceiver objects by eliminating the assumptionTom Lane2008-11-301-2/+6
* Some infrastructure changes for the upcoming auto-explain contrib module:Tom Lane2008-11-191-1/+3
* Add a few more DTrace probes to the backend.Alvaro Herrera2008-08-011-1/+10
* Improve snapshot manager by keeping explicit track of snapshots.Alvaro Herrera2008-05-121-43/+41
* Rename snapmgmt.c/h to snapmgr.c/h, for consistency with other files.Alvaro Herrera2008-03-261-2/+2
* Separate snapshot management code from tuple visibility code, create aAlvaro Herrera2008-03-261-1/+2
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-011-2/+2
* Re-run pgindent with updated list of typedefs. (Updated README shouldBruce Momjian2007-11-151-4/+4
* pgindent run for 8.3.Bruce Momjian2007-11-151-13/+13
* Support SET FROM CURRENT in CREATE/ALTER FUNCTION, ALTER DATABASE, ALTER ROLE.Tom Lane2007-09-031-2/+1
* Modify processing of DECLARE CURSOR and EXPLAIN so that they can resolve theTom Lane2007-04-271-7/+12
* First phase of plan-invalidation project: create a plan cache managementTom Lane2007-03-131-39/+35
* Remove the Query structure from the executor's API. This allows us to stopTom Lane2007-02-201-118/+220
* Fix portal management code to support non-default command completion tags forTom Lane2007-02-181-4/+8
* Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian2007-01-051-2/+2
* pgindent run for 8.2.Bruce Momjian2006-10-041-17/+18
* Revert FETCH/MOVE int64 patch. Was using incorrect checks forBruce Momjian2006-09-031-25/+25
* Fix LLONG_MAX define used by new int64 FETCH/MOVE patch.Bruce Momjian2006-09-031-2/+2
* Change FETCH/MOVE to use int8.Bruce Momjian2006-09-021-25/+25
* Fix oversight in initial implementation of PORTAL_ONE_RETURNING mode: weTom Lane2006-08-141-16/+46
* Add INSERT/UPDATE/DELETE RETURNING, with basic docs and regression tests.Tom Lane2006-08-121-59/+93
* Remove 576 references of include files that were not needed.Bruce Momjian2006-07-141-3/+1
* Allow include files to compile own their own.Bruce Momjian2006-07-131-1/+2
* Alphabetically order reference to include files, "N" - "S".Bruce Momjian2006-07-111-2/+2
* Create infrastructure for 'MinimalTuple' representation of in-memoryTom Lane2006-06-271-8/+4
* Update copyright for 2006. Update scripts.Bruce Momjian2006-03-051-2/+2
* Extend the ExecInitNode API so that plan nodes receive a set of flagTom Lane2006-02-281-5/+15
* Cleanup the usage of ScanDirection: use the symbolic names for theNeil Conway2006-02-211-5/+5
* Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian2005-11-221-13/+13
* Fix a couple of missed None -> DestNone in comments.Tom Lane2005-11-031-4/+4
* Rename the members of CommandDest enum so they don't collide with other uses ofAlvaro Herrera2005-11-031-13/+13
* Standard pgindent run for 8.1.Bruce Momjian2005-10-151-113/+107
* Fix the mechanism for reporting the original table OID and column numberTom Lane2005-06-221-1/+52
* Improve EXPLAIN ANALYZE to show the time spent in each trigger whenTom Lane2005-03-251-4/+4
* Revise TupleTableSlot code to avoid unnecessary construction and disassemblyTom Lane2005-03-161-4/+10
* Fix SPI cursor support to allow scanning the results of utility commandsTom Lane2005-02-101-2/+27