aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor
Commit message (Expand)AuthorAge
* 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
* Make non-MVCC snapshots exempt from predicate locking. Scans with non-MVCCHeikki Linnakangas2011-06-15
* Pgindent run before 9.1 beta2.Bruce Momjian2011-06-09
* Disallow SELECT FOR UPDATE/SHARE on sequences.Tom Lane2011-06-02
* Allow hash joins to be interrupted while searching hash table for match.Tom Lane2011-06-01
* Install defenses against overflow in BuildTupleHashTable().Tom Lane2011-05-23
* Reset per-tuple memory context between every row in a scan node, even whenHeikki Linnakangas2011-05-21
* Refactor broken CREATE TABLE IF NOT EXISTS support.Robert Haas2011-04-25
* Make a code-cleanup pass over the collations patch.Tom Lane2011-04-22
* Pass collations to functions in FunctionCallInfoData, not FmgrInfo.Tom Lane2011-04-12
* Clean up most -Wunused-but-set-variable warnings from gcc 4.6Peter Eisentraut2011-04-11
* pgindent run before PG 9.1 beta 1.Bruce Momjian2011-04-10
* Fix check_exclusion_constraint() to insert correct collations in ScanKeys.Tom Lane2011-03-27
* Clean up cruft around collation initialization for tupdescs and scankeys.Tom Lane2011-03-26
* Pass collation to makeConst() instead of looking it up internally.Tom Lane2011-03-25
* Fix handling of collation in SQL-language functions.Tom Lane2011-03-24
* Revise collation derivation method and expression-tree representation.Tom Lane2011-03-19