aboutsummaryrefslogtreecommitdiff
path: root/src/include/nodes
Commit message (Expand)AuthorAge
* Fix incorrect generation of whole-row variables in planner.Tom Lane2010-10-19
* Fix PlaceHolderVar mechanism's interaction with outer joins.Tom Lane2010-09-28
* Fix failure of "ALTER TABLE t ADD COLUMN c serial" when done by non-owner.Tom Lane2010-08-18
* Fix potential failure when hashing the output of a subplan that producesTom Lane2010-07-28
* pgindent run for 9.0, second runBruce Momjian2010-07-06
* Fix "constraint_exclusion = partition" logic so that it will also attemptTom Lane2010-03-30
* Rework join-removal logic as per recent discussion. In particular thisTom Lane2010-03-28
* pgindent run for 9.0Bruce Momjian2010-02-26
* Add an OR REPLACE option to CREATE LANGUAGE.Tom Lane2010-02-23
* Stamp HEAD as 9.0devel, and update various places that were referring to 8.5Tom Lane2010-02-17
* Replace the pg_listener-based LISTEN/NOTIFY mechanism with an in-memory queue.Tom Lane2010-02-16
* Support inlining various small performance-critical functions on non-GCCTom Lane2010-02-13
* Extend the set of frame options supported for window functions.Tom Lane2010-02-12
* Remove old-style VACUUM FULL (which was known for a little while asTom Lane2010-02-08
* Type table featurePeter Eisentraut2010-01-28
* Replace ALTER TABLE ... SET STATISTICS DISTINCT with a more general mechanism.Robert Haas2010-01-22
* Improve the handling of SET CONSTRAINTS commands by having them searchTom Lane2010-01-17
* Do parse analysis of an EXPLAIN's contained statement during the normalTom Lane2010-01-15
* Support rewritten-based full vacuum as VACUUM FULL. TraditionalItagaki Takahiro2010-01-06
* Add support for doing FULL JOIN ON FALSE. While this is really a ratherTom Lane2010-01-05
* Support ALTER TABLESPACE name SET/RESET ( tablespace_options ).Robert Haas2010-01-05
* Update copyright for the year 2010.Bruce Momjian2010-01-02
* Add an "argisrow" field to NullTest nodes, following a plan made way back inTom Lane2010-01-01
* Support "x IS NOT NULL" clauses as indexscan conditions. This turns outTom Lane2010-01-01
* Add the ability to store inheritance-tree statistics in pg_statistic,Tom Lane2009-12-29
* Adjust naming of indexes and their columns per recent discussion.Tom Lane2009-12-23
* Support ORDER BY within aggregate function calls, at long last providing aTom Lane2009-12-15
* Add an EXPLAIN (BUFFERS) option to show buffer-usage statistics.Robert Haas2009-12-15
* Add large object access control.Itagaki Takahiro2009-12-11
* Add exclusion constraints, which generalize the concept of uniqueness toTom Lane2009-12-07
* Eliminate a lot of list-management overhead within join_search_one_levelTom Lane2009-11-28
* Add a WHEN clause to CREATE TRIGGER, allowing a boolean expression to beTom Lane2009-11-20
* Provide a parenthesized-options syntax for VACUUM, analogous to that recentlyTom Lane2009-11-16
* Improve planning of Materialize nodes inserted atop the inner input of aTom Lane2009-11-15
* Avoid assuming that enum CreateStmtLikeOption is unsigned. Zdenek KotalaTom Lane2009-11-13
* Keep track of language's trusted flag in InlineCodeBlock. Needed to support D...Andrew Dunstan2009-11-06
* Add support for invoking parser callback hooks via SPI and in cached plans.Tom Lane2009-11-04
* When FOR UPDATE/SHARE is used with LIMIT, put the LockRows plan nodeTom Lane2009-10-28
* Re-implement EvalPlanQual processing to improve its performance and eliminateTom Lane2009-10-26
* Support SQL-compliant triggers on columns, ie fire only if certain columnsTom Lane2009-10-14
* Code review for LIKE INCLUDING patch --- clean up some cosmetic and notTom Lane2009-10-13
* Support GRANT/REVOKE ON ALL TABLES/SEQUENCES/FUNCTIONS IN SCHEMA.Tom Lane2009-10-12
* CREATE LIKE INCLUDING COMMENTS and STORAGE, and INCLUDING ALL shortcut. Itaga...Andrew Dunstan2009-10-12
* Move the handling of SELECT FOR UPDATE locking and rechecking out ofTom Lane2009-10-12
* Split the processing of INSERT/UPDATE/DELETE operations out of execMain.c.Tom Lane2009-10-10
* Support use of function argument names to identify which actual argumentsTom Lane2009-10-08
* Make it possibly to specify GUC params per user and per database.Alvaro Herrera2009-10-07
* Change CREATE TABLE so that column default expressions coming from differentTom Lane2009-10-06
* Create an ALTER DEFAULT PRIVILEGES command, which allows users to adjustTom Lane2009-10-05
* Replace the array-style TupleTable data structure with a simple List ofTom Lane2009-09-27