summaryrefslogtreecommitdiff
path: root/src/include/nodes
AgeCommit message (Expand)Author
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
2011-08-16Revise sinval code to remove no-longer-used tuple TID from inval messages.Tom Lane
2011-08-06Clean up ill-advised attempt to invent a private set of Node tags.Tom Lane
2011-08-05Allow per-column foreign data wrapper options.Robert Haas
2011-07-18Avoid index rebuild for no-rewrite ALTER TABLE .. ALTER TYPE.Robert Haas
2011-07-04Move Trigger and TriggerDesc structs out of rel.h into a new reltrigger.hAlvaro Herrera
2011-06-30Enable CHECK constraints to be declared NOT VALIDAlvaro Herrera
2011-06-15Rework parsing of ConstraintAttributeSpec to improve NOT VALID handling.Tom Lane
2011-06-09Pgindent run before 9.1 beta2.Bruce Momjian
2011-05-21Pull up isReset flag from AllocSetContext to MemoryContext struct. ThisHeikki Linnakangas
2011-04-25Remove partial and undocumented GRANT .. FOREIGN TABLE support.Robert Haas
2011-04-24Improve cost estimation for aggregates and window functions.Tom Lane
2011-04-21Allow ALTER TABLE name {OF type | NOT OF}.Robert Haas
2011-04-18Fix handling of collations in multi-row VALUES constructs.Tom Lane
2011-04-12Pass collations to functions in FunctionCallInfoData, not FmgrInfo.Tom Lane
2011-04-10pgindent run before PG 9.1 beta 1.Bruce Momjian
2011-04-04Rearrange "add column" logic to merge columns at exec time.Robert Haas
2011-03-26More collations cleanup, from trawling for missed collation assignments.Tom Lane
2011-03-26Pass collation to makeConst() instead of looking it up internally.Tom Lane
2011-03-22Make FKs valid at creation when added as column constraints.Simon Riggs