aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor
Commit message (Expand)AuthorAge
* Fix whole-row Var evaluation to cope with resjunk columns (again).Tom Lane2012-07-20
* Fix memory leak in ARRAY(SELECT ...) subqueries.Tom Lane2012-06-21
* Run pgindent on 9.2 source tree in preparation for first 9.3Bruce Momjian2012-06-10
* Fix more crash-safe visibility map bugs, and improve comments.Robert Haas2012-06-07
* Rename I/O timing statistics columns to blk_read_time and blk_write_time.Tom Lane2012-04-29
* Lots of doc corrections.Robert Haas2012-04-23
* New GUC, track_iotiming, to track I/O timings.Robert Haas2012-03-27
* Clean up compiler warnings from unused variables with asserts disabledPeter Eisentraut2012-03-21
* Restructure SELECT INTO's parsetree representation into CreateTableAsStmt.Tom Lane2012-03-19
* Make EXPLAIN (BUFFERS) track blocks dirtied, as well as those written.Robert Haas2012-02-22
* Preserve column names in the execution-time tupledesc for a RowExpr.Tom Lane2012-02-14
* Add TIMING option to EXPLAIN, to allow eliminating of timing overhead.Robert Haas2012-02-07
* Allow SQL-language functions to reference parameters by name.Tom Lane2012-02-04
* Assorted comment fixes, mostly just typos, but some obsolete statements.Tom Lane2012-01-29
* Fix handling of data-modifying CTE subplans in EvalPlanQual.Tom Lane2012-01-28
* Instrument index-only scans to count heap fetches performed.Robert Haas2012-01-25
* Prevent adding relations to a concurrently dropped schema.Robert Haas2012-01-16
* Make executor's SELECT INTO code save and restore original tuple receiver.Tom Lane2012-01-04
* Update copyright notices for year 2012.Bruce Momjian2012-01-01
* Take fewer snapshots.Robert Haas2011-12-21
* Add support for privileges on typesPeter Eisentraut2011-12-20
* Miscellaneous cleanup to silence compiler warnings seen on Mingw.Andrew Dunstan2011-12-10
* Create a "sort support" interface API for faster sorting.Tom Lane2011-12-07
* When a row fails a not-null constraint, show row's contents in errdetail.Tom Lane2011-11-29
* When a row fails a CHECK constraint, show row's contents in errdetail.Tom Lane2011-11-29
* Fix unsupported options in CREATE TABLE ... AS EXECUTE.Tom Lane2011-11-24
* Check for INSERT privileges in SELECT INTO / CREATE TABLE AS.Robert Haas2011-11-22
* Support range data types.Heikki Linnakangas2011-11-03
* Fix handling of PlaceHolderVars in nestloop parameter management.Tom Lane2011-11-03
* Avoid assuming that index-only scan data matches the index's rowtype.Tom Lane2011-10-16
* Teach btree to handle ScalarArrayOpExpr quals natively.Tom Lane2011-10-16
* Generate index-only scan tuple descriptor from the plan node's indextlist.Tom Lane2011-10-11
* Rearrange the implementation of index-only scans.Tom Lane2011-10-11
* Improve index-only scans to avoid repeated access to the index page.Tom Lane2011-10-09
* Support index-only scans using the visibility map to avoid heap fetches.Tom Lane2011-10-07
* Update obsolete comments.Robert Haas2011-09-26
* Make EXPLAIN ANALYZE report the numbers of rows rejected by filter steps.Tom Lane2011-09-22
* Redesign the plancache mechanism for more flexibility and efficiency.Tom Lane2011-09-16
* Clean up the #include mess a little.Tom Lane2011-09-04
* Rearrange planner to save the whole PlannerInfo (subroot) for a subquery.Tom Lane2011-09-03
* Remove unnecessary #include references, per pgrminclude script.Bruce Momjian2011-09-01
* Fix trigger WHEN conditions when both BEFORE and AFTER triggers exist.Tom Lane2011-08-21
* Avoid integer overflow when LIMIT + OFFSET >= 2^63.Heikki Linnakangas2011-08-02
* Move Trigger and TriggerDesc structs out of rel.h into a new reltrigger.hAlvaro Herrera2011-07-04
* Fix bugs in relpersistence handling during table creation.Robert Haas2011-07-03
* Move the PredicateLockRelation() call from nodeSeqscan.c to heapam.c. It'sHeikki Linnakangas2011-06-29
* Grab predicate locks on matching tuples in a lossy bitmap heap scan.Heikki Linnakangas2011-06-29
* Avoid having two copies of the HOT-chain search logic.Robert Haas2011-06-27
* Remove extra copying of TupleDescs for heap_create_with_catalogAlvaro Herrera2011-06-20
* Remove another no-longer-needed inclusion of predicate.h.Tom Lane2011-06-16