summaryrefslogtreecommitdiff
path: root/src/include/nodes
AgeCommit message (Expand)Author
2010-11-04Reimplement planner's handling of MIN/MAX aggregate optimization.Tom Lane
2010-11-01Avoid using a local FunctionCallInfoData struct in ExecMakeFunctionResultTom Lane
2010-10-31Provide hashing support for arrays.Tom Lane
2010-10-26Fix typos "are are".Itagaki Takahiro
2010-10-25Allow new values to be added to an existing enum type.Tom Lane
2010-10-19Fix incorrect generation of whole-row variables in planner.Tom Lane
2010-10-15Allow WITH clauses to be attached to INSERT, UPDATE, DELETE statements.Tom Lane
2010-10-14Support MergeAppend plans, to allow sorted output from append relations.Tom Lane
2010-10-10Support triggers on views.Tom Lane
2010-09-28Fix PlaceHolderVar mechanism's interaction with outer joins.Tom Lane
2010-09-28Add a SECURITY LABEL command.Robert Haas
2010-09-26Add ALTER TYPE ... ADD/DROP/ALTER/RENAME ATTRIBUTEPeter Eisentraut
2010-09-20Remove cvs keywords from all files.Magnus Hagander
2010-08-27Small refactoring of makeVar() from a TargetEntryPeter Eisentraut
2010-08-18Fix failure of "ALTER TABLE t ADD COLUMN c serial" when done by non-owner.Tom Lane
2010-08-07Recognize functional dependency on primary keys. This allows a table'sTom Lane
2010-07-28Fix potential failure when hashing the output of a subplan that producesTom Lane
2010-07-25CREATE TABLE IF NOT EXISTS.Robert Haas
2010-07-12Make NestLoop plan nodes pass outer-relation variables into their innerTom Lane
2010-07-06pgindent run for 9.0, second runBruce Momjian
2010-03-30Fix "constraint_exclusion = partition" logic so that it will also attemptTom Lane
2010-03-28Rework join-removal logic as per recent discussion. In particular thisTom Lane
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