summaryrefslogtreecommitdiff
path: root/src/backend/executor
Commit message (Expand)AuthorAgeFilesLines
* Add defenses against integer overflow in dynahash numbuckets calculations.Tom Lane2012-12-111-1/+3
* Support automatically-updatable views.Tom Lane2012-12-081-7/+13
* Basic binary heap implementation.Robert Haas2012-11-291-83/+31
* Fix assorted bugs in CREATE/DROP INDEX CONCURRENTLY.Tom Lane2012-11-281-0/+3
* Revert patch for taking fewer snapshots.Tom Lane2012-11-261-7/+11
* Throw error if expiring tuple is again updated or deleted.Kevin Grittner2012-10-263-43/+120
* Get rid of COERCE_DONTCARE.Tom Lane2012-10-121-3/+3
* Fix cross-type case in partial row matching for hashed subplans.Tom Lane2012-10-111-6/+11
* Return the number of rows processed when COPY is executed through SPI.Heikki Linnakangas2012-10-031-9/+15
* Fix serializable mode with index-only scans.Kevin Grittner2012-09-041-1/+15
* Split tuple struct defs from htup.h to htup_details.hAlvaro Herrera2012-08-3014-0/+14
* Split heapam_xlog.h from heapam.hAlvaro Herrera2012-08-281-0/+1
* Fix rescan logic in nodeCtescan.Tom Lane2012-08-151-17/+20
* Fix whole-row Var evaluation to cope with resjunk columns (again).Tom Lane2012-07-202-178/+286
* Make new event trigger facility actually do something.Robert Haas2012-07-202-4/+4
* Remove unreachable codePeter Eisentraut2012-07-161-3/+0
* Fix memory leak in ARRAY(SELECT ...) subqueries.Tom Lane2012-06-211-5/+13
* Run pgindent on 9.2 source tree in preparation for first 9.3Bruce Momjian2012-06-1013-53/+54
* Fix more crash-safe visibility map bugs, and improve comments.Robert Haas2012-06-071-0/+13
* Rename I/O timing statistics columns to blk_read_time and blk_write_time.Tom Lane2012-04-291-2/+4
* Lots of doc corrections.Robert Haas2012-04-231-2/+2
* New GUC, track_iotiming, to track I/O timings.Robert Haas2012-03-271-0/+2
* Clean up compiler warnings from unused variables with asserts disabledPeter Eisentraut2012-03-214-6/+4
* Restructure SELECT INTO's parsetree representation into CreateTableAsStmt.Tom Lane2012-03-194-432/+42
* Make EXPLAIN (BUFFERS) track blocks dirtied, as well as those written.Robert Haas2012-02-221-0/+2
* Preserve column names in the execution-time tupledesc for a RowExpr.Tom Lane2012-02-143-11/+17
* Add TIMING option to EXPLAIN, to allow eliminating of timing overhead.Robert Haas2012-02-071-13/+21
* Allow SQL-language functions to reference parameters by name.Tom Lane2012-02-041-5/+191
* Assorted comment fixes, mostly just typos, but some obsolete statements.Tom Lane2012-01-291-1/+1
* Fix handling of data-modifying CTE subplans in EvalPlanQual.Tom Lane2012-01-282-20/+19
* Instrument index-only scans to count heap fetches performed.Robert Haas2012-01-251-0/+2
* Prevent adding relations to a concurrently dropped schema.Robert Haas2012-01-161-3/+5
* Make executor's SELECT INTO code save and restore original tuple receiver.Tom Lane2012-01-041-5/+15
* Update copyright notices for year 2012.Bruce Momjian2012-01-0147-47/+47
* Take fewer snapshots.Robert Haas2011-12-211-11/+7
* Add support for privileges on typesPeter Eisentraut2011-12-201-0/+15
* Miscellaneous cleanup to silence compiler warnings seen on Mingw.Andrew Dunstan2011-12-101-0/+4
* Create a "sort support" interface API for faster sorting.Tom Lane2011-12-072-151/+72
* When a row fails a not-null constraint, show row's contents in errdetail.Tom Lane2011-11-291-1/+3
* When a row fails a CHECK constraint, show row's contents in errdetail.Tom Lane2011-11-291-1/+65
* Fix unsupported options in CREATE TABLE ... AS EXECUTE.Tom Lane2011-11-241-3/+37
* Check for INSERT privileges in SELECT INTO / CREATE TABLE AS.Robert Haas2011-11-221-0/+17
* Support range data types.Heikki Linnakangas2011-11-031-0/+1
* Fix handling of PlaceHolderVars in nestloop parameter management.Tom Lane2011-11-031-0/+1
* Avoid assuming that index-only scan data matches the index's rowtype.Tom Lane2011-10-161-8/+8
* Teach btree to handle ScalarArrayOpExpr quals natively.Tom Lane2011-10-161-11/+64
* Generate index-only scan tuple descriptor from the plan node's indextlist.Tom Lane2011-10-111-52/+16
* Rearrange the implementation of index-only scans.Tom Lane2011-10-1113-147/+634
* Improve index-only scans to avoid repeated access to the index page.Tom Lane2011-10-091-1/+1
* Support index-only scans using the visibility map to avoid heap fetches.Tom Lane2011-10-071-9/+114