summaryrefslogtreecommitdiff
path: root/src/include/nodes
AgeCommit message (Expand)Author
2020-10-28Calculate extraUpdatedCols in query rewriter, not parser.Tom Lane
2020-10-28Fix foreign-key selectivity estimation in the presence of constants.Tom Lane
2020-10-19Remove PartitionRoutingInfo struct.Heikki Linnakangas
2020-10-19Revise child-to-root tuple conversion map management.Heikki Linnakangas
2020-10-19Clean up code to resolve the "root target relation" in nodeModifyTable.cHeikki Linnakangas
2020-10-14Remove es_result_relation_info from EState.Heikki Linnakangas
2020-10-14Include result relation info in direct modify ForeignScan nodes.Heikki Linnakangas
2020-10-13Create ResultRelInfos later in InitPlan, index them by RT index.Heikki Linnakangas
2020-09-28Add for_each_from, to simplify loops starting from non-first list cells.Tom Lane
2020-09-28Improve pg_list.h's linitial(), lsecond() and co macrosDavid Rowley
2020-09-27Move resolution of AlternativeSubPlan choices to the planner.Tom Lane
2020-09-17Allow CURRENT_ROLE where CURRENT_USER is acceptedPeter Eisentraut
2020-09-16Don't fetch partition check expression during InitResultRelInfo.Tom Lane
2020-09-04Remove variable "concurrent" from ReindexStmtMichael Paquier
2020-09-02Fix thinko with definition of REINDEXOPT_MISSING_OKMichael Paquier
2020-09-02Improve handling of dropped relations for REINDEX DATABASE/SCHEMA/SYSTEMMichael Paquier
2020-08-21Fix handling of CREATE TABLE LIKE with inheritance.Tom Lane
2020-08-19Suppress unnecessary RelabelType nodes in yet more cases.Tom Lane
2020-08-14Be more careful about the shape of hashable subplan clauses.Tom Lane
2020-08-02Use int64 instead of long in incremental sort codeDavid Rowley
2020-07-12HashAgg: before spilling tuples, set unneeded columns to NULL.Jeff Davis
2020-07-11Rename field "relkind" to "objtype" for CTAS and ALTER TABLE nodesMichael Paquier
2020-07-08code: replace most remaining uses of 'master'.Andres Freund
2020-06-19Fix EXPLAIN ANALYZE for parallel HashAgg plansDavid Rowley
2020-05-14Initial pgindent and pgperltidy run for v13.Tom Lane
2020-04-20Add ALTER .. NO DEPENDS ONAlvaro Herrera
2020-04-11Make EXPLAIN report maximum hashtable usage across multiple rescans.Tom Lane
2020-04-08Revert 0f5ca02f53Alexander Korotkov
2020-04-07Allow partitionwise join to handle nested FULL JOIN USING cases.Tom Lane
2020-04-08Allow partitionwise joins in more cases.Etsuro Fujita
2020-04-07Implement waiting for given lsn at transaction startAlexander Korotkov
2020-04-07Support FETCH FIRST WITH TIESAlvaro Herrera
2020-04-06Implement Incremental SortTomas Vondra
2020-04-04Skip WAL for new relfilenodes, under wal_level=minimal.Noah Misch
2020-04-03Cosmetic improvements for code related to partitionwise join.Tom Lane
2020-03-30Implement operator class parametersAlexander Korotkov
2020-03-22Revert "Skip WAL for new relfilenodes, under wal_level=minimal."Noah Misch
2020-03-21Skip WAL for new relfilenodes, under wal_level=minimal.Noah Misch
2020-03-19Revert "Specialize MemoryContextMemAllocated()."Jeff Davis
2020-03-18Disk-based Hash Aggregation.Jeff Davis
2020-03-18Specialize MemoryContextMemAllocated().Jeff Davis
2020-03-06Allow ALTER TYPE to change some properties of a base type.Tom Lane
2020-02-28Fix commit c11cb17d.Jeff Davis
2020-02-27Save calculated transitionSpace in Agg node.Jeff Davis
2020-02-24Move bitmap_hash and bitmap_match to bitmapset.c.Robert Haas
2020-02-17Optimize update of tables with generated columnsPeter Eisentraut
2020-02-06expression eval: Don't redundantly keep track of AggState.Andres Freund
2020-01-17Repair more failures with SubPlans in multi-row VALUES lists.Tom Lane
2020-01-15Restructure ALTER TABLE execution to fix assorted bugs.Tom Lane
2020-01-14ALTER TABLE ... ALTER COLUMN ... DROP EXPRESSIONPeter Eisentraut