summaryrefslogtreecommitdiff
path: root/src/backend/executor/execMain.c
Commit message (Expand)AuthorAgeFilesLines
* Fix a couple of places in execMain that erroneously assumed that SELECT FORTom Lane2008-04-211-35/+52
* Support statement-level ON TRUNCATE triggers. Simon RiggsTom Lane2008-03-281-11/+6
* Move the HTSU_Result enum definition into snapshot.h, to avoid includingAlvaro Herrera2008-03-261-1/+2
* Fix CREATE TABLE ... LIKE ... INCLUDING INDEXES to not cause unwantedTom Lane2008-02-071-2/+2
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-011-2/+2
* Avoid incrementing the CommandCounter when CommandCounterIncrement is calledTom Lane2007-11-301-23/+42
* Re-run pgindent with updated list of typedefs. (Updated README shouldBruce Momjian2007-11-151-3/+3
* pgindent run for 8.3.Bruce Momjian2007-11-151-35/+35
* HOT updates. When we update a tuple without changing any of its indexedTom Lane2007-09-201-2/+4
* Don't take ProcArrayLock while exiting a transaction that has no XID; there isTom Lane2007-09-071-7/+1
* Arrange to cache a ResultRelInfo in the executor's EState for relations thatTom Lane2007-08-151-12/+118
* Support UPDATE/DELETE WHERE CURRENT OF cursor_name, per SQL standard.Tom Lane2007-06-111-1/+19
* Create a GUC parameter temp_tablespaces that allows selection of theTom Lane2007-06-031-3/+3
* Modify processing of DECLARE CURSOR and EXPLAIN so that they can resolve theTom Lane2007-04-271-5/+5
* Teach CLUSTER to skip writing WAL if not needed (ie, not using archiving)Tom Lane2007-03-291-9/+3
* Clean up the representation of special snapshots by including a "methodTom Lane2007-03-251-5/+7
* Revert temp_tablespaces because of coding problems, per Tom.Bruce Momjian2007-03-061-5/+1
* Get rid of the separate EState for subplans, and just let them share theTom Lane2007-02-271-25/+93
* Turn the rangetable used by the executor into a flat list, and avoid storingTom Lane2007-02-221-39/+11
* Remove the Query structure from the executor's API. This allows us to stopTom Lane2007-02-201-82/+72
* Repair failure to check that a table is still compatible with a previouslyTom Lane2007-02-021-2/+3
* Add GUC temp_tablespaces to provide a default location for temporaryBruce Momjian2007-01-251-1/+5
* Prevent WAL logging when COPY is done in the same transation thatBruce Momjian2007-01-251-6/+2
* Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian2007-01-051-2/+2
* Fix failure due to accessing an already-freed tuple descriptor in a planTom Lane2006-12-261-1/+5
* Refactor ExecGetJunkAttribute to avoid searching for junk attributesTom Lane2006-12-041-20/+44
* pgindent run for 8.2.Bruce Momjian2006-10-041-42/+44
* Tweak SPI_cursor_open to allow INSERT/UPDATE/DELETE RETURNING; this wasTom Lane2006-08-121-2/+2
* Add INSERT/UPDATE/DELETE RETURNING, with basic docs and regression tests.Tom Lane2006-08-121-200/+455
* Change the bootstrap sequence so that toast tables for system catalogs areTom Lane2006-07-311-3/+3
* Remove 576 references of include files that were not needed.Bruce Momjian2006-07-141-5/+1
* Allow include files to compile own their own.Bruce Momjian2006-07-131-1/+3
* Sort reference of include files, "A" - "F".Bruce Momjian2006-07-111-2/+2
* Code review for FILLFACTOR patch. Change WITH grammar as per earlierTom Lane2006-07-031-9/+14
* Add FILLFACTOR to CREATE INDEX.Bruce Momjian2006-07-021-2/+8
* Fix problems with cached tuple descriptors disappearing while still in useTom Lane2006-06-161-7/+3
* Improve the representation of FOR UPDATE/FOR SHARE so that we canTom Lane2006-04-301-25/+18
* 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-12/+11
* Cleanup the usage of ScanDirection: use the symbolic names for theNeil Conway2006-02-211-2/+2
* Add TABLESPACE and ON COMMIT clauses to CREATE TABLE AS. ON COMMIT isNeil Conway2006-02-191-3/+44
* Repair "Halloween problem" in EvalPlanQual: a tuple that's been inserted byTom Lane2006-01-121-5/+27
* Cosmetic code cleanup: fix a bunch of places that used "return (expr);"Neil Conway2006-01-111-4/+4
* Add comment explaining why RelationOpenSmgr() call is not needed.Tom Lane2006-01-071-1/+2
* Adjust scan plan nodes to avoid getting an extra AccessShareLock on aTom Lane2005-12-021-14/+7
* Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian2005-11-221-19/+19
* Modify tuptoaster's API so that it does not try to modify the passedTom Lane2005-11-201-21/+1
* Stopgap solution for problem reported by Alexey Beschiokov: afterTom Lane2005-11-191-7/+27
* Update obsolete comment describing ExecDelete(), per Simon Riggs.Neil Conway2005-11-181-3/+3
* Prevent ExecInsert() and ExecUpdate() from scribbling on the result tupleTom Lane2005-11-141-8/+30