summaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeModifyTable.c
AgeCommit message (Expand)Author
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
2018-04-10Fix IndexOnlyScan counter for heap fetches in parallel modeAlvaro Herrera
2018-04-07Raise error when affecting tuple moved into different partition.Andres Freund
2018-04-06Allow insert and update tuple routing and COPY for foreign tables.Robert Haas
2018-04-05MERGE post-commit reviewSimon Riggs
2018-04-03MERGE SQL Command following SQL:2016Simon Riggs
2018-04-02Revert "Modified files for MERGE"Simon Riggs
2018-04-02Modified files for MERGESimon Riggs
2018-03-26Handle INSERT .. ON CONFLICT with partitioned tablesAlvaro Herrera
2018-03-19Remove unnecessary members from ModifyTableState and ExecInsertAlvaro Herrera
2018-03-19Expand comment a little bitAlvaro Herrera
2018-03-19Fix state reversal after partition tuple routingAlvaro Herrera
2018-03-14Fix comment for ExecProcessReturningStephen Frost
2018-02-22Be lazier about partition tuple routing.Robert Haas
2018-02-17Allow tupleslots to have a fixed tupledesc, use in executor nodes.Andres Freund
2018-01-25Add missing "static" markers.Tom Lane
2018-01-24Avoid referencing off the end of subplan_partition_offsets.Robert Haas
2018-01-19Allow UPDATE to move rows between partitions.Robert Haas
2018-01-17Remove useless lookup of root partitioned rel in ExecInitModifyTable().Tom Lane
2018-01-05Factor error generation out of ExecPartitionCheck.Robert Haas
2018-01-04Simplify and encapsulate tuple routing support code.Robert Haas