aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor
Commit message (Expand)AuthorAge
* Install checks in executor startup to ensure that the tuples produced by anTom Lane2008-08-08
* Improve INTERSECT/EXCEPT hashing by realizing that we don't need to make anyTom Lane2008-08-07
* Support hashing for duplicate-elimination in INTERSECT and EXCEPT queries.Tom Lane2008-08-07
* Do not allow Unique nodes to be scanned backwards. The code claimed that itTom Lane2008-08-05
* Rearrange the querytree representation of ORDER BY/GROUP BY/DISTINCT itemsTom Lane2008-08-02
* As noted by Andrew Gierth, there's really no need any more to force a junkTom Lane2008-07-26
* Adjust things so that the query_string of a cached plan and the sourceText ofTom Lane2008-07-18
* Provide a function hook to let plug-ins get control around ExecutorRun.Tom Lane2008-07-18
* Fix mis-calculation of extParam/allParam sets for plan nodes, as seen inTom Lane2008-07-10
* Improve our #include situation by moving pointer types away from theAlvaro Herrera2008-06-19
* Refactor SPI_cursor_open/SPI_cursor_open_with_args so that the latter setsTom Lane2008-06-01
* Add support for tracking call counts and elapsed runtime for user-definedTom Lane2008-05-15
* Move the "instr_time" typedef and associated macros into a new headerTom Lane2008-05-14
* This is the patch replace offnum++ by OffsetNumberNext, to beBruce Momjian2008-05-13
* Improve snapshot manager by keeping explicit track of snapshots.Alvaro Herrera2008-05-12
* Restructure some header files a bit, in particular heapam.h, by removing someAlvaro Herrera2008-05-12
* Change the rules for inherited CHECK constraints to be essentially the sameTom Lane2008-05-09
* Fix nodeTidscan.c to not trigger an error if the block number portion ofTom Lane2008-04-30
* Fix a couple of places in execMain that erroneously assumed that SELECT FORTom Lane2008-04-21
* Since createplan.c no longer cares whether index operators are lossy, it hasTom Lane2008-04-13
* Phase 2 of project to make index operator lossiness be determined at runtimeTom Lane2008-04-13
* Replace "amgetmulti" AM functions with "amgetbitmap", in which the wholeTom Lane2008-04-10
* Revert my bad decision of about a year ago to make PortalDefineQueryTom Lane2008-04-02
* Add SPI-level support for executing SQL commands with one-time-use plans,Tom Lane2008-04-01
* Support statement-level ON TRUNCATE triggers. Simon RiggsTom Lane2008-03-28
* Move the HTSU_Result enum definition into snapshot.h, to avoid includingAlvaro Herrera2008-03-26
* Rename snapmgmt.c/h to snapmgr.c/h, for consistency with other files.Alvaro Herrera2008-03-26
* Separate snapshot management code from tuple visibility code, create aAlvaro Herrera2008-03-26
* Simplify and standardize conversions between TEXT datums and ordinary CTom Lane2008-03-25
* Add a new tuplestore API function, tuplestore_putvalues(). This isNeil Conway2008-03-25
* Avoid a useless tuple copy within nodeMaterial. Neil ConwayTom Lane2008-03-23
* More README src cleanups.Bruce Momjian2008-03-21
* Add a couple of missing FreeQueryDesc calls. Noticed while testing aAlvaro Herrera2008-03-20
* Make source code READMEs more consistent. Add CVS tags to all README files.Bruce Momjian2008-03-20
* Arrange to "inline" SQL functions that appear in a query's FROM clause,Tom Lane2008-03-18
* Advance multiple array keys rightmost-first instead of leftmost-firstTom Lane2008-03-18
* Throw an error for negative LIMIT or OFFSET values, instead of silentlyTom Lane2008-03-10
* Fix several memory leaks when rescanning SRFs. Arrange for an SRF'sNeil Conway2008-02-29
* Refactor backend makefiles to remove lots of duplicate codePeter Eisentraut2008-02-19
* Fix SPI_cursor_open() and SPI_is_cursor_plan() to push the SPI stack beforeTom Lane2008-02-12
* Fix CREATE TABLE ... LIKE ... INCLUDING INDEXES to not cause unwantedTom Lane2008-02-07
* The original implementation of polymorphic aggregates didn't really get theTom Lane2008-01-11
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-01
* Avoid incrementing the CommandCounter when CommandCounterIncrement is calledTom Lane2007-11-30
* Repair bug that allowed RevalidateCachedPlan to attempt to rebuild a cachedTom Lane2007-11-30
* Re-run pgindent with updated list of typedefs. (Updated README shouldBruce Momjian2007-11-15
* pgindent run for 8.3.Bruce Momjian2007-11-15
* Tweak new error messages to match the actual syntax of DECLARE CURSOR.Tom Lane2007-10-25
* Disallow scrolling of FOR UPDATE/FOR SHARE cursors, so as to avoid problemsTom Lane2007-10-24
* Fix UPDATE/DELETE WHERE CURRENT OF to support repeated update and update-Tom Lane2007-10-24