summaryrefslogtreecommitdiff
path: root/src/backend/executor
AgeCommit message (Expand)Author
2021-05-21Fix usage of "tableoid" in GENERATED expressions.Tom Lane
2021-05-21Restore the portal-level snapshot after procedure COMMIT/ROLLBACK.Tom Lane
2021-05-10Fix mishandling of resjunk columns in ON CONFLICT ... UPDATE tlists.Tom Lane
2021-05-10Prevent integer overflows in array subscripting calculations.Tom Lane
2021-04-22Don't crash on reference to an un-available system column.Tom Lane
2021-04-22Fix bugs in RETURNING in cross-partition UPDATE cases.Tom Lane
2021-04-13Redesign the caching done by get_cached_rowtype().Tom Lane
2021-03-18Revert "Fix race in Parallel Hash Join batch cleanup."Thomas Munro
2021-03-17Fix race in Parallel Hash Join batch cleanup.Thomas Munro
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
2021-01-28Fix hash partition pruning with asymmetric partition sets.Tom Lane
2021-01-28Don't add bailout adjustment for non-strict deserialize calls.Andrew Gierth
2021-01-19Remove faulty support for MergeAppend plan with WHERE CURRENT OF.Tom Lane
2021-01-18Avoid crash with WHERE CURRENT OF and a custom scan plan.Tom Lane
2020-11-24Properly check index mark/restore in ExecSupportsMarkRestore.Andrew Gierth
2020-11-20Skip allocating hash table in EXPLAIN-only mode.Heikki Linnakangas
2020-11-08In INSERT/UPDATE, use the table's real tuple descriptor as target.Tom Lane
2020-11-03Guard against core dump from uninitialized subplan.Tom Lane
2020-09-08Check default partitions constraints while descendingAlvaro Herrera
2020-08-14Be more careful about the shape of hashable subplan clauses.Tom Lane
2020-08-05Fix matching of sub-partitions when a partitioned plan is stale.Tom Lane
2020-07-25Fix buffer usage stats for nodes above Gather Merge.Amit Kapila
2020-06-16Fix buffile.c error handling.Thomas Munro
2020-05-16Fix assertion with relation using REPLICA IDENTITY FULL in subscriberMichael Paquier
2020-04-22Fix transient memory leak for SRFs in FROM.Andres Freund
2020-04-21Fix minor violations of FunctionCallInvoke usage protocol.Tom Lane
2020-04-18Fix possible crash with GENERATED ALWAYS columnsDavid Rowley
2020-04-11Clear dangling pointer to avoid bogus EXPLAIN printout in a corner case.Tom Lane
2020-02-29Correctly re-use hash tables in buildSubPlanHash().Tom Lane
2020-02-07Fix bug in Tid scan.Fujii Masao
2020-02-03Add missing break out seqscan loop in logical replicationAlvaro Herrera
2020-01-28Fix dangling pointer in EvalPlanQual machinery.Tom Lane
2020-01-27Avoid unnecessary shm writes in Parallel Hash Join.Thomas Munro
2020-01-20Fix edge case leading to agg transitions skipping ExecAggTransReparent() calls.Andres Freund
2020-01-17Repair more failures with SubPlans in multi-row VALUES lists.Tom Lane
2020-01-14Make rewriter prevent auto-updates on views with conditional INSTEAD rules.Dean Rasheed
2019-12-24Rotate instead of shifting hash join batch number.Thomas Munro
2019-12-04Fix whitespace.Etsuro Fujita
2019-11-26Don't shut down Gather[Merge] early under Limit.Amit Kapila
2019-11-16Always call ExecShutdownNode() if appropriate.Thomas Munro
2019-11-06Minor code review for tuple slot rewrite.Tom Lane
2019-09-29jit: Re-allow JIT compilation of execGrouping.c hashtable comparisons.Andres Freund
2019-09-29Fix determination when slot types for upper executor nodes are fixed.Andres Freund
2019-09-22Fix typo in tts_virtual_copyslot.Tom Lane
2019-09-15Fix bogus sizeof calculations.Tom Lane
2019-09-09Reorder EPQ work, to fix rowmark related bugs and improve efficiency.Andres Freund
2019-08-05Fix choice of comparison operators for cross-type hashed subplans.Tom Lane
2019-08-02Fix representation of hash keys in Hash/HashJoin nodes.Andres Freund
2019-07-31Remove superfluous newlines in function prototypes.Andres Freund