summaryrefslogtreecommitdiff
path: root/src/include/nodes
AgeCommit message (Expand)Author
2010-02-26pgindent run for 9.0Bruce Momjian
2010-02-23Add an OR REPLACE option to CREATE LANGUAGE.Tom Lane
2010-02-17Stamp HEAD as 9.0devel, and update various places that were referring to 8.5Tom Lane
2010-02-16Replace the pg_listener-based LISTEN/NOTIFY mechanism with an in-memory queue.Tom Lane
2010-02-13Support inlining various small performance-critical functions on non-GCCTom Lane
2010-02-12Extend the set of frame options supported for window functions.Tom Lane
2010-02-08Remove old-style VACUUM FULL (which was known for a little while asTom Lane
2010-01-28Type table featurePeter Eisentraut
2010-01-22Replace ALTER TABLE ... SET STATISTICS DISTINCT with a more general mechanism.Robert Haas
2010-01-17Improve the handling of SET CONSTRAINTS commands by having them searchTom Lane
2010-01-15Do parse analysis of an EXPLAIN's contained statement during the normalTom Lane
2010-01-06Support rewritten-based full vacuum as VACUUM FULL. TraditionalItagaki Takahiro
2010-01-05Add support for doing FULL JOIN ON FALSE. While this is really a ratherTom Lane
2010-01-05Support ALTER TABLESPACE name SET/RESET ( tablespace_options ).Robert Haas
2010-01-02Update copyright for the year 2010.Bruce Momjian
2010-01-01Add an "argisrow" field to NullTest nodes, following a plan made way back inTom Lane
2010-01-01Support "x IS NOT NULL" clauses as indexscan conditions. This turns outTom Lane
2009-12-29Add the ability to store inheritance-tree statistics in pg_statistic,Tom Lane
2009-12-23Adjust naming of indexes and their columns per recent discussion.Tom Lane
2009-12-15Support ORDER BY within aggregate function calls, at long last providing aTom Lane
2009-12-15Add an EXPLAIN (BUFFERS) option to show buffer-usage statistics.Robert Haas
2009-12-11Add large object access control.Itagaki Takahiro
2009-12-07Add exclusion constraints, which generalize the concept of uniqueness toTom Lane
2009-11-28Eliminate a lot of list-management overhead within join_search_one_levelTom Lane
2009-11-20Add a WHEN clause to CREATE TRIGGER, allowing a boolean expression to beTom Lane
2009-11-16Provide a parenthesized-options syntax for VACUUM, analogous to that recentlyTom Lane
2009-11-15Improve planning of Materialize nodes inserted atop the inner input of aTom Lane
2009-11-13Avoid assuming that enum CreateStmtLikeOption is unsigned. Zdenek KotalaTom Lane
2009-11-06Keep track of language's trusted flag in InlineCodeBlock. Needed to support D...Andrew Dunstan
2009-11-04Add support for invoking parser callback hooks via SPI and in cached plans.Tom Lane
2009-10-28When FOR UPDATE/SHARE is used with LIMIT, put the LockRows plan nodeTom Lane
2009-10-26Re-implement EvalPlanQual processing to improve its performance and eliminateTom Lane
2009-10-14Support SQL-compliant triggers on columns, ie fire only if certain columnsTom Lane
2009-10-13Code review for LIKE INCLUDING patch --- clean up some cosmetic and notTom Lane
2009-10-12Support GRANT/REVOKE ON ALL TABLES/SEQUENCES/FUNCTIONS IN SCHEMA.Tom Lane
2009-10-12CREATE LIKE INCLUDING COMMENTS and STORAGE, and INCLUDING ALL shortcut. Itaga...Andrew Dunstan
2009-10-12Move the handling of SELECT FOR UPDATE locking and rechecking out ofTom Lane
2009-10-10Split the processing of INSERT/UPDATE/DELETE operations out of execMain.c.Tom Lane
2009-10-08Support use of function argument names to identify which actual argumentsTom Lane
2009-10-07Make it possibly to specify GUC params per user and per database.Alvaro Herrera
2009-10-06Change CREATE TABLE so that column default expressions coming from differentTom Lane
2009-10-05Create an ALTER DEFAULT PRIVILEGES command, which allows users to adjustTom Lane
2009-09-27Replace the array-style TupleTable data structure with a simple List ofTom Lane
2009-09-22Implement the DO statement to support execution of PL code without havingTom Lane
2009-09-17Implement "join removal" for cases where the inner side of a left joinTom Lane
2009-08-23Tweak ExecIndexEvalRuntimeKeys to forcibly detoast any toasted comparisonTom Lane
2009-08-06Improve plpgsql's ability to cope with rowtypes containing dropped columns,Tom Lane
2009-08-02Add ALTER TABLE ... ALTER COLUMN ... SET STATISTICS DISTINCTTom Lane
2009-07-30Merge the Constraint and FkConstraint node types into a single type.Tom Lane
2009-07-29Support deferrable uniqueness constraints.Tom Lane