summaryrefslogtreecommitdiff
path: root/src/include/nodes
AgeCommit message (Expand)Author
2016-08-24Fix improper repetition of previous results from a hashed aggregate.Tom Lane
2016-07-28Fix assorted fallout from IS [NOT] NULL patch.Tom Lane
2014-06-19Avoid leaking memory while evaluating arguments for a table function.Tom Lane
2014-05-06Remove tabs after spaces in C commentsBruce Momjian
2014-02-17Avoid repeated name lookups during table and index DDL.Robert Haas
2013-07-23Change post-rewriter representation of dropped columns in joinaliasvars.Tom Lane
2012-12-23Prevent failure when RowExpr or XmlExpr is parse-analyzed twice.Tom Lane
2012-11-05Fix handling of inherited check constraints in ALTER COLUMN TYPE.Tom Lane
2012-10-18Fix planning of non-strict equivalence clauses above outer joins.Tom Lane
2012-09-07Fix PARAM_EXEC assignment mechanism to be safe in the presence of WITH.Tom Lane
2012-07-20Fix whole-row Var evaluation to cope with resjunk columns (again).Tom Lane
2012-06-21Fix memory leak in ARRAY(SELECT ...) subqueries.Tom Lane
2012-03-24Fix planner's handling of outer PlaceHolderVars within subqueries.Tom Lane
2012-03-16Revisit handling of UNION ALL subqueries with non-Var output columns.Tom Lane
2011-11-27Ensure that whole-row junk Vars are always of composite type.Tom Lane
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-08-21Fix trigger WHEN conditions when both BEFORE and AFTER triggers exist.Tom Lane
2011-08-06Clean up ill-advised attempt to invent a private set of Node tags.Tom Lane
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-20Allow 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-03Rearrange "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-25Pass 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
2011-03-22Reimplement planner's handling of MIN/MAX aggregate optimization (again).Tom Lane
2011-03-19Revise collation derivation method and expression-tree representation.Tom Lane
2011-03-11Split CollateClause into separate raw and analyzed node types.Tom Lane
2011-03-09Remove collation information from TypeName, where it does not belong.Tom Lane
2011-03-04Allow non-superusers to create (some) extensions.Tom Lane
2011-02-27Refactor the executor's API to support data-modifying CTEs better.Tom Lane
2011-02-25Support data-modifying commands (INSERT/UPDATE/DELETE) in WITH.Tom Lane
2011-02-22Add a relkind field to RangeTblEntry to avoid some syscache lookups.Tom Lane
2011-02-20Implement an API to let foreign-data wrappers actually be functional.Tom Lane
2011-02-19Create the catalog infrastructure for foreign-data-wrapper handlers.Tom Lane
2011-02-16Fix bogus test for hypothetical indexes in get_actual_variable_range().Tom Lane
2011-02-12DDL support for collationsPeter Eisentraut
2011-02-11Add support for multiple versions of an extension and ALTER EXTENSION UPDATE.Tom Lane
2011-02-10Extend "ALTER EXTENSION ADD object" to permit "DROP object" as well.Tom Lane
2011-02-09Fix improper matching of resjunk column names for FOR UPDATE in subselect.Tom Lane
2011-02-09Implement "ALTER EXTENSION ADD object".Tom Lane
2011-02-08Core support for "extensions", which are packages of SQL objects.Tom Lane
2011-02-08Per-column collation supportPeter Eisentraut