summaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeModifyTable.c
AgeCommit message (Expand)Author
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
2017-08-18Fix interaction of triggers, partitioning, and EXPLAIN ANALYZE.Robert Haas
2017-08-14Final pgindent + perltidy run for v10.Tom Lane
2017-08-03Improve ExecModifyTable comments.Robert Haas
2017-08-03Teach map_partition_varattnos to handle whole-row expressions.Robert Haas
2017-07-30Move ExecProcNode from dispatch to function pointer based model.Andres Freund
2017-07-30Move interrupt checking from ExecProcNode() to executor nodes.Andres Freund
2017-07-17Use a real RT index when setting up partition tuple routing.Robert Haas
2017-06-28Fix transition tables for wCTEs.Andrew Gierth
2017-06-28Fix transition tables for partition/inheritance.Andrew Gierth
2017-06-21Phase 3 of pgindent updates.Tom Lane
2017-06-21Phase 2 of pgindent updates.Tom Lane
2017-06-13Re-run pgindent.Tom Lane
2017-06-12Fix confusion about number of subplans in partitioned INSERT setup.Tom Lane
2017-06-07Prevent BEFORE triggers from violating partitioning constraints.Robert Haas
2017-05-17Post-PG 10 beta1 pgindent runBruce Momjian
2017-05-01Fire per-statement triggers on partitioned tables.Robert Haas
2017-04-10Improve castNode notation by introducing list-extraction-specific variants.Tom Lane
2017-04-10Fix reporting of violations in ExecConstraints, again.Robert Haas
2017-03-25Faster expression evaluation and targetlist projection.Andres Freund
2017-03-21Don't scan partitioned tables.Robert Haas
2017-01-26Use the new castNode() macro in a number of places.Andres Freund
2017-01-24Fix things so that updatable views work with partitioned tables.Robert Haas
2017-01-24Reindent table partitioning code.Robert Haas
2017-01-19Remove obsoleted code relating to targetlist SRF evaluation.Andres Freund
2017-01-19Fix RETURNING to work correctly with partition tuple routing.Robert Haas
2017-01-04Fix reporting of constraint violations for table partitioning.Robert Haas
2017-01-04Move partition_tuple_slot out of EState.Robert Haas
2017-01-03Update copyright via script for 2017Bruce Momjian
2016-12-22Fix tuple routing in cases where tuple descriptors don't match.Robert Haas
2016-12-21Refactor partition tuple routing code to reduce duplication.Robert Haas