aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeModifyTable.c
Commit message (Expand)AuthorAge
* Fix SQL-spec incompatibilities in new transition table feature.Tom Lane2017-09-16
* Quick-hack fix for foreign key cascade vs triggers with transition tables.Tom Lane2017-09-10
* Even if some partitions are foreign, allow tuple routing.Robert Haas2017-09-07
* Change tupledesc->attrs[n] to TupleDescAttr(tupledesc, n).Andres Freund2017-08-20
* Fix interaction of triggers, partitioning, and EXPLAIN ANALYZE.Robert Haas2017-08-18
* Final pgindent + perltidy run for v10.Tom Lane2017-08-14
* Improve ExecModifyTable comments.Robert Haas2017-08-03
* Teach map_partition_varattnos to handle whole-row expressions.Robert Haas2017-08-03
* Move ExecProcNode from dispatch to function pointer based model.Andres Freund2017-07-30
* Move interrupt checking from ExecProcNode() to executor nodes.Andres Freund2017-07-30
* Use a real RT index when setting up partition tuple routing.Robert Haas2017-07-17
* Fix transition tables for wCTEs.Andrew Gierth2017-06-28
* Fix transition tables for partition/inheritance.Andrew Gierth2017-06-28
* Phase 3 of pgindent updates.Tom Lane2017-06-21
* Phase 2 of pgindent updates.Tom Lane2017-06-21
* Re-run pgindent.Tom Lane2017-06-13
* Fix confusion about number of subplans in partitioned INSERT setup.Tom Lane2017-06-12
* Prevent BEFORE triggers from violating partitioning constraints.Robert Haas2017-06-07
* Post-PG 10 beta1 pgindent runBruce Momjian2017-05-17
* Fire per-statement triggers on partitioned tables.Robert Haas2017-05-01
* Improve castNode notation by introducing list-extraction-specific variants.Tom Lane2017-04-10
* Fix reporting of violations in ExecConstraints, again.Robert Haas2017-04-10
* Faster expression evaluation and targetlist projection.Andres Freund2017-03-25
* Don't scan partitioned tables.Robert Haas2017-03-21
* Use the new castNode() macro in a number of places.Andres Freund2017-01-26
* Fix things so that updatable views work with partitioned tables.Robert Haas2017-01-24
* Reindent table partitioning code.Robert Haas2017-01-24
* Remove obsoleted code relating to targetlist SRF evaluation.Andres Freund2017-01-19
* Fix RETURNING to work correctly with partition tuple routing.Robert Haas2017-01-19
* Fix reporting of constraint violations for table partitioning.Robert Haas2017-01-04
* Move partition_tuple_slot out of EState.Robert Haas2017-01-04
* Update copyright via script for 2017Bruce Momjian2017-01-03
* Fix tuple routing in cases where tuple descriptors don't match.Robert Haas2016-12-22
* Refactor partition tuple routing code to reduce duplication.Robert Haas2016-12-21
* Clean up code, comments, and formatting for table partitioning.Robert Haas2016-12-13
* Implement table partitioning.Robert Haas2016-12-07
* Avoid testing tuple visibility without buffer lock.Tom Lane2016-10-23
* Don't throw serialization errors for self-conflicts in INSERT ON CONFLICT.Tom Lane2016-10-23
* pgindent run for 9.6Robert Haas2016-06-09
* Directly modify foreign tables.Robert Haas2016-03-18
* When modifying a foreign table, initialize tableoid field properly.Robert Haas2016-02-04
* Update copyright for 2016Bruce Momjian2016-01-02
* Fix ON CONFLICT UPDATE bug breaking AFTER UPDATE triggers.Andres Freund2015-12-10
* Fix ON CONFLICT DO UPDATE for tables with oids.Andres Freund2015-09-28
* Remove false comment about speculative insertion.Heikki Linnakangas2015-07-27
* pgindent run for 9.5Bruce Momjian2015-05-23
* Attach ON CONFLICT SET ... WHERE to the correct planstate.Andres Freund2015-05-19
* Fix ON CONFLICT bugs that manifest when used in rules.Andres Freund2015-05-13
* Add support for doing late row locking in FDWs.Tom Lane2015-05-12
* Add support for INSERT ... ON CONFLICT DO NOTHING/UPDATE.Andres Freund2015-05-08