summaryrefslogtreecommitdiff
path: root/src/include/nodes
AgeCommit message (Expand)Author
2012-07-31Fix WITH attached to a nested set operation (UNION/INTERSECT/EXCEPT).Tom Lane
2012-07-20Fix whole-row Var evaluation to cope with resjunk columns (again).Tom Lane
2012-07-20Make new event trigger facility actually do something.Robert Haas
2012-07-18Syntax support and documentation for event triggers.Robert Haas
2012-07-16Avoid pre-determining index names during CREATE TABLE LIKE parsing.Tom Lane
2012-06-21Fix memory leak in ARRAY(SELECT ...) subqueries.Tom Lane
2012-06-18Refer to the default foreign key match style as MATCH SIMPLE internally.Tom Lane
2012-06-10Run pgindent on 9.2 source tree in preparation for first 9.3Bruce Momjian
2012-04-21Recast "ONLY" column CHECK constraints as NO INHERITAlvaro Herrera
2012-04-19Revise parameterized-path mechanism to fix assorted issues.Tom Lane
2012-04-06Add DROP INDEX CONCURRENTLY [IF EXISTS], uses ShareUpdateExclusiveLockSimon Riggs
2012-03-27Add some infrastructure for contrib/pg_stat_statements.Tom Lane
2012-03-24Fix planner's handling of outer PlaceHolderVars within subqueries.Tom Lane
2012-03-23Code review for protransform patches.Tom Lane
2012-03-20Restructure SELECT INTO's parsetree representation into CreateTableAsStmt.Tom Lane
2012-03-16Revisit handling of UNION ALL subqueries with non-Var output columns.Tom Lane
2012-03-09Revise FDW planning API, again.Tom Lane
2012-03-05Redesign PlanForeignScan API to allow multiple paths for a foreign table.Tom Lane
2012-02-27ALTER TABLE: skip FK validation when it's safe to do soAlvaro Herrera
2012-02-14Preserve column names in the execution-time tupledesc for a RowExpr.Tom Lane
2012-01-28Use parameterized paths to generate inner indexscans more flexibly.Tom Lane
2012-01-26Instrument index-only scans to count heap fetches performed.Robert Haas
2012-01-23ALTER <thing> [IF EXISTS] ... allows silent DDL if required,Simon Riggs
2012-01-07Rename the internal structures of the CREATE TABLE (LIKE ...) facilityPeter Eisentraut
2012-01-05Improve ALTER DOMAIN / DROP CONSTRAINT with nonexistent constraintPeter Eisentraut
2012-01-01Update copyright notices for year 2012.Bruce Momjian
2011-12-25Rethink representation of index clauses' mapping to index columns.Tom Lane
2011-12-23Improve planner's handling of duplicated index column expressions.Tom Lane
2011-12-22Add a security_barrier option for views.Robert Haas
2011-12-19Add support for privileges on typesPeter Eisentraut
2011-12-18Replace simple constant pg_am.amcanreturn with an AM support function.Tom Lane
2011-12-07Add const qualifiers to node inspection functionsPeter Eisentraut
2011-12-07Create a "sort support" interface API for faster sorting.Tom Lane
2011-11-28Ensure that whole-row junk Vars are always of composite type.Tom Lane
2011-11-25Fix unsupported options in CREATE TABLE ... AS EXECUTE.Tom Lane
2011-11-21Further code review for range types patch.Tom Lane
2011-11-18Further consolidation of DROP statement handling.Robert Haas
2011-11-03Support range data types.Heikki Linnakangas
2011-11-03Fix handling of PlaceHolderVars in nestloop parameter management.Tom Lane
2011-10-23Don't trust deferred-unique indexes for join removal.Tom Lane
2011-10-16Teach btree to handle ScalarArrayOpExpr quals natively.Tom Lane
2011-10-14Measure the number of all-visible pages for use in index-only scan costing.Tom Lane
2011-10-11Rearrange the implementation of index-only scans.Tom Lane
2011-10-08Support index-only scans using the visibility map to avoid heap fetches.Tom Lane
2011-09-22Make EXPLAIN ANALYZE report the numbers of rows rejected by filter steps.Tom Lane
2011-09-16Redesign the plancache mechanism for more flexibility and efficiency.Tom Lane
2011-09-11Remove many -Wcast-qual warningsPeter Eisentraut
2011-09-03Rearrange planner to save the whole PlannerInfo (subroot) for a subquery.Tom Lane
2011-09-01Remove unnecessary #include references, per pgrminclude script.Bruce Momjian
2011-08-21Fix trigger WHEN conditions when both BEFORE and AFTER triggers exist.Tom Lane