summaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeModifyTable.c
AgeCommit message (Expand)Author
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
2016-12-13Clean up code, comments, and formatting for table partitioning.Robert Haas
2016-12-07Implement table partitioning.Robert Haas
2016-10-23Avoid testing tuple visibility without buffer lock.Tom Lane
2016-10-23Don't throw serialization errors for self-conflicts in INSERT ON CONFLICT.Tom Lane
2016-06-09pgindent run for 9.6Robert Haas
2016-03-18Directly modify foreign tables.Robert Haas
2016-02-04When modifying a foreign table, initialize tableoid field properly.Robert Haas
2016-01-02Update copyright for 2016Bruce Momjian
2015-12-10Fix ON CONFLICT UPDATE bug breaking AFTER UPDATE triggers.Andres Freund
2015-09-28Fix ON CONFLICT DO UPDATE for tables with oids.Andres Freund
2015-07-27Remove false comment about speculative insertion.Heikki Linnakangas
2015-05-23pgindent run for 9.5Bruce Momjian
2015-05-19Attach ON CONFLICT SET ... WHERE to the correct planstate.Andres Freund
2015-05-13Fix ON CONFLICT bugs that manifest when used in rules.Andres Freund
2015-05-12Add support for doing late row locking in FDWs.Tom Lane
2015-05-08Add support for INSERT ... ON CONFLICT DO NOTHING/UPDATE.Andres Freund