summaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeModifyTable.c
AgeCommit message (Expand)Author
2020-04-18Fix possible crash with GENERATED ALWAYS columnsDavid Rowley
2020-02-17Optimize update of tables with generated columnsPeter Eisentraut
2020-01-01Update copyrights for 2020Bruce Momjian
2019-12-11Further adjust EXPLAIN's choices of table alias names.Tom Lane
2019-12-04Fix whitespace.Etsuro Fujita
2019-09-09Reorder EPQ work, to fix rowmark related bugs and improve efficiency.Andres Freund
2019-09-03Remove 'msg' parameter from convert_tuples_by_nameAlvaro Herrera
2019-07-25Fix system column accesses in ON CONFLICT ... RETURNING.Andres Freund
2019-07-01pgindent run prior to branching v12.Tom Lane
2019-06-08Fix assorted inconsistencies.Amit Kapila
2019-05-23tableam: Rename wrapper functions to match callback names.Andres Freund
2019-05-22Phase 2 pgindent run for v12.Tom Lane
2019-05-22Initial pgindent run for v12.Tom Lane
2019-05-22Convert ExecComputeStoredGenerated to use tuple slotsPeter Eisentraut
2019-05-14Handle table_complete_speculative's succeeded argument as documented.Andres Freund
2019-04-19Fix two memory leaks around force-storing tuples in slots.Andres Freund
2019-04-08Fix a number of issues around modifying a previously updated row.Andres Freund
2019-03-30Generated columnsPeter Eisentraut
2019-03-25tableam: Add and use table_fetch_row_version().Andres Freund
2019-03-24tableam: Add tuple_{insert, delete, update, lock} and use.Andres Freund
2019-03-11tableam: Add and use scan APIs.Andres Freund
2019-03-07Allow ATTACH PARTITION with only ShareUpdateExclusiveLock.Robert Haas
2019-03-06Don't reuse slots between root and partition in ON CONFLICT ... UPDATE.Andres Freund
2019-03-01Store tuples for EvalPlanQual in slots, rather than as HeapTuples.Andres Freund
2019-02-28Don't superfluously materialize slot after DELETE from an FDW.Andres Freund
2019-02-27Use slots in trigger infrastructure, except for the actual invocation.Andres Freund
2019-02-27Store table oid and tuple's tid in tuple slots directly.Andres Freund
2019-01-22Move remaining code from tqual.[ch] to heapam.h / heapam_visibility.c.Andres Freund
2019-01-15Fix parent of WCO qual.Andres Freund
2019-01-15Don't include heapam.h from others headers.Andres Freund
2019-01-02Update copyright for 2019Bruce Momjian
2018-11-21Remove WITH OIDS support, change oid catalog column visibility.Andres Freund
2018-11-17Make TupleTableSlots extensible, finish split of existing slot type.Andres Freund
2018-11-16Redesign initialization of partition routing structuresAlvaro Herrera
2018-11-16Introduce 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-15Rationalize expression context reset in ExecModifyTable().Andres Freund
2018-11-10Don't require return slots for nodes without projection.Andres Freund
2018-10-16Move TupleTableSlots boolean member into one flag variable.Andres Freund
2018-10-02Use slots more widely in tuple mapping code and make naming more consistent.Andres Freund
2018-09-25Split ExecStoreTuple into ExecStoreHeapTuple and ExecStoreBufferHeapTuple.Andres Freund
2018-08-01Allow multi-inserts during COPY into a partitioned tablePeter Eisentraut
2018-07-18Fix misc typos, mostly in comments.Heikki Linnakangas
2018-07-12Allow using the updated tuple while moving it to a different partition.Amit Kapila
2018-06-11Don't needlessly check the partition contraint twiceAlvaro Herrera
2018-06-07Fix obsolete comment.Heikki Linnakangas
2018-05-01Clean up warnings from -Wimplicit-fallthrough.Tom Lane
2018-05-01Fix interaction of foreign tuple routing with remote triggers.Robert Haas
2018-04-26Post-feature-freeze pgindent run.Tom Lane
2018-04-12Revert MERGE patchSimon Riggs