summaryrefslogtreecommitdiff
path: root/src/backend/executor/execTuples.c
AgeCommit message (Expand)Author
2024-03-26Improve error message for tts_(virtual|minimal)_is_current_xact_tupleAlexander Korotkov
2024-03-26Add comments on some MinimalTupleSlots methods usageAlexander Korotkov
2024-03-21Add TupleTableSlotOps.is_current_xact_tuple() methodAlexander Korotkov
2024-01-03Update copyright for 2024Bruce Momjian
2023-12-07Verify that attribute counts match in ExecCopySlotDavid Rowley
2023-10-10Add const to values and nulls argumentsPeter Eisentraut
2023-03-30Fix outdated comments regarding TupleTableSlotsDavid Rowley
2023-01-02Update copyright for 2023Bruce Momjian
2022-03-17Revert applying column aliases to the output of whole-row Vars.Tom Lane
2022-01-07Update copyright for 2022Bruce Momjian
2021-04-22Don't crash on reference to an un-available system column.Tom Lane
2021-01-02Update copyright for 2021Bruce Momjian
2020-01-01Update copyrights for 2020Bruce Momjian
2019-11-12Make the order of the header file includes consistent in backend modules.Amit Kapila
2019-11-06Minor code review for tuple slot rewrite.Tom Lane
2019-09-22Fix typo in tts_virtual_copyslot.Tom Lane
2019-09-05Split tuptoaster.c into three separate files.Robert Haas
2019-08-16Don't include utils/array.h from acl.h.Andres Freund
2019-07-08Fix inconsistencies in the codeMichael Paquier
2019-06-08Fix assorted inconsistencies.Amit Kapila
2019-05-26Fix typos.Amit Kapila
2019-05-24Fix typos.Thomas Munro
2019-05-22Phase 2 pgindent run for v12.Tom Lane
2019-05-22Initial pgindent run for v12.Tom Lane
2019-04-19Fix two memory leaks around force-storing tuples in slots.Andres Freund
2019-04-10Fix typos.Thomas Munro
2019-03-06Fix bug in clearing of virtual tuple slot.Andres Freund
2019-03-01Store tuples for EvalPlanQual in slots, rather than as HeapTuples.Andres Freund
2019-02-28Don't force materializing when copying a buffer tuple table slot.Andres Freund
2019-02-28Allow buffer tuple table slots to materialize after ExecStoreVirtualTuple().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-26Add ExecStorePinnedBufferHeapTuple.Andres Freund
2019-02-18Remove line duplicated during conflict resolution.Andres Freund
2019-01-23Fix misc typos in comments.Heikki Linnakangas
2019-01-02Update copyright for 2019Bruce Momjian
2018-12-17Remove extra semicolons.Amit Kapila
2018-11-30Fix typo.Amit Kapila
2018-11-20Remove WITH OIDS support, change oid catalog column visibility.Andres Freund
2018-11-17Fix some spurious new compiler warnings in MSVC.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-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-09Remove ineffective check against dropped columns from slot_getattr().Andres Freund
2018-11-09Don't require return slots for nodes without projection.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-09-25Remove absolete function TupleDescGetSlot().Andres Freund
2018-09-25Split ExecStoreTuple into ExecStoreHeapTuple and ExecStoreBufferHeapTuple.Andres Freund