summaryrefslogtreecommitdiff
path: root/src/include/executor
AgeCommit message (Expand)Author
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-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-08Fix permission checks on constraint violation errors on partitions.Heikki Linnakangas
2020-11-08In INSERT/UPDATE, use the table's real tuple descriptor as target.Tom Lane
2019-11-06Minor code review for tuple slot rewrite.Tom Lane
2019-10-04Fix crash caused by EPQ happening with a before update trigger present.Andres Freund
2019-09-09Reorder EPQ work, to fix rowmark related bugs and improve efficiency.Andres Freund
2019-07-01Fix many typos and inconsistenciesMichael Paquier
2019-06-17Fix more typos and inconsistencies in the treeMichael Paquier
2019-06-13Fix double-word typosAlvaro Herrera
2019-06-08Fix assorted inconsistencies.Amit Kapila
2019-06-03Fix typos in various placesMichael Paquier
2019-05-22Phase 2 pgindent run for v12.Tom Lane
2019-05-22Initial pgindent run for v12.Tom Lane
2019-05-17Restructure creation of run-time pruning steps.Tom Lane
2019-04-19Fix two memory leaks around force-storing tuples in slots.Andres Freund
2019-03-30Generated columnsPeter Eisentraut
2019-03-24Transaction chainingPeter Eisentraut
2019-03-23tableam: Add tuple_{insert, delete, update, lock} and use.Andres Freund
2019-03-22Collations with nondeterministic comparisonPeter Eisentraut
2019-03-07Allow ATTACH PARTITION with only ShareUpdateExclusiveLock.Robert Haas
2019-03-01Store tuples for EvalPlanQual in slots, rather than as HeapTuples.Andres Freund
2019-02-26Use slots in trigger infrastructure, except for the actual invocation.Andres Freund
2019-02-26Store table oid and tuple's tid in tuple slots directly.Andres Freund
2019-02-26Allow to use HeapTupleData embedded in [Buffer]HeapTupleTableSlot.Andres Freund
2019-02-26Add ExecStorePinnedBufferHeapTuple.Andres Freund
2019-02-09Allow to reset execGrouping.c style tuple hashtables.Andres Freund
2019-02-01Renaming for new subscripting mechanismAlvaro Herrera
2019-01-29Rename nodes/relation.h to nodes/pathnodes.h.Tom Lane
2019-01-26Change function call information to be variable length.Andres Freund
2019-01-14Don't include genam.h from execnodes.h and relscan.h anymore.Andres Freund
2019-01-14Don't include heapam.h from others headers.Andres Freund
2019-01-02Update copyright for 2019Bruce Momjian
2018-12-22Add some const decorationsPeter Eisentraut
2018-11-20Remove WITH OIDS support, change oid catalog column visibility.Andres Freund
2018-11-16Make TupleTableSlots extensible, finish split of existing slot type.Andres Freund
2018-11-16Inline hot path of slot_getsomeattrs().Andres Freund
2018-11-16Redesign initialization of partition routing structuresAlvaro Herrera
2018-11-15Add dummy field to currently empty struct TupleTableSlotOps.Andres Freund
2018-11-15Compute information about EEOP_*_FETCHSOME at expression init time.Andres Freund
2018-11-15Introduce notion of different types of slots (without implementing them).Andres Freund
2018-11-15Rejigger materializing and fetching a HeapTuple from a slot.Andres Freund
2018-11-09Don't require return slots for nodes without projection.Andres Freund
2018-11-07Move EEOP_*_SYSVAR evaluation out of line.Andres Freund
2018-10-15Move TupleTableSlots boolean member into one flag variable.Andres Freund
2018-10-15Move generic slot support functions from heaptuple.c into execTuples.c.Andres Freund
2018-10-08Advance transaction timestamp for intra-procedure transactions.Tom Lane