summaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeModifyTable.c
AgeCommit message (Expand)Author
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-16Redesign initialization of partition routing structuresAlvaro Herrera
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-15Rationalize expression context reset in ExecModifyTable().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-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-16Allow 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
2018-01-02Update copyright for 2018Bruce Momjian
2017-12-29Rely on executor utils to build targetlist for DML RETURNING.Andres Freund
2017-12-01Re-allow INSERT .. ON CONFLICT DO NOTHING on partitioned tables.Robert Haas
2017-11-29Update typedefs.list and re-run pgindentRobert Haas
2017-11-27Fix creation of resjunk tlist entries for inherited mixed UPDATE/DELETE.Tom Lane
2017-11-15Centralize executor-related partitioning code.Robert Haas
2017-10-12Use ResultRelInfo ** rather than ResultRelInfo * for tuple routing.Robert Haas
2017-09-16Fix SQL-spec incompatibilities in new transition table feature.Tom Lane
2017-09-10Quick-hack fix for foreign key cascade vs triggers with transition tables.Tom Lane
2017-09-07Even if some partitions are foreign, allow tuple routing.Robert Haas
2017-08-20Change tupledesc->attrs[n] to TupleDescAttr(tupledesc, n).Andres Freund