summaryrefslogtreecommitdiff
path: root/src/backend/executor/execMain.c
AgeCommit message (Expand)Author
2012-03-21Don't allow CREATE TABLE AS to put relations in pg_global.Robert Haas
2012-01-04Make executor's SELECT INTO code save and restore original tuple receiver.Tom Lane
2011-06-02Disallow SELECT FOR UPDATE/SHARE on sequences.Tom Lane
2011-02-21Fix dangling-pointer problem in before-row update trigger processing.Tom Lane
2009-12-09Prevent indirect security attacks via changing session-local state withinTom Lane
2009-06-11Revisit AlterTableCreateToastTable's API once again, hoping to make it whatTom Lane
2009-06-118.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian
2009-05-07Add an option to AlterTableCreateToastTable() to allow its caller to forceTom Lane
2009-02-08Ensure that INSERT ... SELECT into a table with OIDs never copies row OIDsTom Lane
2009-02-02Allow reloption names to have qualifiers, initially supporting a TOASTAlvaro Herrera
2009-01-22Support column-level privileges, as required by SQL standard.Tom Lane
2009-01-01Update copyright for 2009.Bruce Momjian
2008-11-30Clean up the API for DestReceiver objects by eliminating the assumptionTom Lane
2008-11-19Some infrastructure changes for the upcoming auto-explain contrib module:Tom Lane
2008-11-16Modify UPDATE/DELETE WHERE CURRENT OF to use the FOR UPDATE infrastructure toTom Lane
2008-11-15Make SELECT FOR UPDATE/SHARE work on inheritance trees, by having the planTom Lane
2008-11-06Improve bulk-insert performance by keeping the current target buffer pinnedTom Lane
2008-10-31Simplify ExecutorRun's API and save some trivial number of cycles by havingTom Lane
2008-08-25Move exprType(), exprTypmod(), expression_tree_walker(), and related routinesTom Lane
2008-08-08Install checks in executor startup to ensure that the tuples produced by anTom Lane
2008-07-26As noted by Andrew Gierth, there's really no need any more to force a junkTom Lane
2008-07-18Provide a function hook to let plug-ins get control around ExecutorRun.Tom 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-05-09Change the rules for inherited CHECK constraints to be essentially the sameTom Lane
2008-04-21Fix a couple of places in execMain that erroneously assumed that SELECT FORTom Lane
2008-03-28Support statement-level ON TRUNCATE triggers. Simon RiggsTom Lane
2008-03-26Move the HTSU_Result enum definition into snapshot.h, to avoid includingAlvaro Herrera
2008-02-07Fix CREATE TABLE ... LIKE ... INCLUDING INDEXES to not cause unwantedTom Lane
2008-01-01Update copyrights in source tree to 2008.Bruce Momjian
2007-11-30Avoid incrementing the CommandCounter when CommandCounterIncrement is calledTom Lane
2007-11-15Re-run pgindent with updated list of typedefs. (Updated README shouldBruce Momjian
2007-11-15pgindent run for 8.3.Bruce Momjian
2007-09-20HOT updates. When we update a tuple without changing any of its indexedTom Lane
2007-09-07Don't take ProcArrayLock while exiting a transaction that has no XID; there isTom Lane
2007-08-15Arrange to cache a ResultRelInfo in the executor's EState for relations thatTom Lane
2007-06-11Support UPDATE/DELETE WHERE CURRENT OF cursor_name, per SQL standard.Tom Lane
2007-06-03Create a GUC parameter temp_tablespaces that allows selection of theTom Lane
2007-04-27Modify processing of DECLARE CURSOR and EXPLAIN so that they can resolve theTom Lane
2007-03-29Teach CLUSTER to skip writing WAL if not needed (ie, not using archiving)Tom Lane
2007-03-25Clean up the representation of special snapshots by including a "methodTom Lane
2007-03-06Revert temp_tablespaces because of coding problems, per Tom.Bruce Momjian
2007-02-27Get rid of the separate EState for subplans, and just let them share theTom Lane
2007-02-22Turn the rangetable used by the executor into a flat list, and avoid storingTom Lane
2007-02-20Remove the Query structure from the executor's API. This allows us to stopTom Lane
2007-02-02Repair failure to check that a table is still compatible with a previouslyTom Lane
2007-01-25Add GUC temp_tablespaces to provide a default location for temporaryBruce Momjian
2007-01-25Prevent WAL logging when COPY is done in the same transation thatBruce Momjian
2007-01-05Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian
2006-12-26Fix failure due to accessing an already-freed tuple descriptor in a planTom Lane