summaryrefslogtreecommitdiff
path: root/src/include/nodes
AgeCommit message (Expand)Author
2023-02-25Fix MULTIEXPR_SUBLINK with partitioned target tables, yet again.Tom Lane
2023-01-05Fix calculation of which GENERATED columns need to be updated.Tom Lane
2022-09-06Further fixes for MULTIEXPR_SUBLINK fix.Tom Lane
2022-08-05Fix ENABLE/DISABLE TRIGGER to handle recursion correctlyAlvaro Herrera
2022-04-21Remove inadequate assertion check in CTE inlining.Tom Lane
2022-01-03Fix index-only scan plans, take 2.Tom Lane
2022-01-01Fix index-only scan plans when not all index columns can be returned.Tom Lane
2021-11-02Avoid O(N^2) behavior in SyncPostCheckpoint().Tom Lane
2021-08-19Avoid trying to lock OLD/NEW in a rule with FOR UPDATE.Tom Lane
2021-03-23Use correct spelling of statistics kindTomas Vondra
2021-02-15Make ExecGetInsertedCols() and friends more robust and improve comments.Heikki Linnakangas
2021-02-08Fix permission checks on constraint violation errors on partitions.Heikki Linnakangas
2020-12-01Ensure that expandTableLikeClause() re-examines the same table.Tom Lane
2020-11-30Fix missing outfuncs.c support for IncrementalSortPath.Tom Lane
2020-11-24Properly check index mark/restore in ExecSupportsMarkRestore.Andrew Gierth
2020-10-28Calculate extraUpdatedCols in query rewriter, not parser.Tom Lane
2020-09-29Add for_each_from, to simplify loops starting from non-first list cells.Tom Lane
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-15Be 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-13HashAgg: before spilling tuples, set unneeded columns to NULL.Jeff Davis
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-08Allow 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-07expression 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
2020-01-09Reconsider the representation of join alias Vars.Tom Lane