summaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeModifyTable.c
Commit message (Expand)AuthorAgeFilesLines
* Fix reporting of constraint violations for table partitioning.Robert Haas2017-01-041-9/+6
* Move partition_tuple_slot out of EState.Robert Haas2017-01-041-9/+8
* Update copyright via script for 2017Bruce Momjian2017-01-031-1/+1
* Fix tuple routing in cases where tuple descriptors don't match.Robert Haas2016-12-221-0/+27
* Refactor partition tuple routing code to reduce duplication.Robert Haas2016-12-211-61/+15
* Clean up code, comments, and formatting for table partitioning.Robert Haas2016-12-131-11/+11
* Implement table partitioning.Robert Haas2016-12-071-3/+151
* Avoid testing tuple visibility without buffer lock.Tom Lane2016-10-231-0/+6
* Don't throw serialization errors for self-conflicts in INSERT ON CONFLICT.Tom Lane2016-10-231-2/+11
* pgindent run for 9.6Robert Haas2016-06-091-5/+5
* Directly modify foreign tables.Robert Haas2016-03-181-10/+50
* When modifying a foreign table, initialize tableoid field properly.Robert Haas2016-02-041-0/+23
* Update copyright for 2016Bruce Momjian2016-01-021-1/+1
* Fix ON CONFLICT UPDATE bug breaking AFTER UPDATE triggers.Andres Freund2015-12-101-1/+10
* Fix ON CONFLICT DO UPDATE for tables with oids.Andres Freund2015-09-281-1/+1
* Remove false comment about speculative insertion.Heikki Linnakangas2015-07-271-2/+1
* pgindent run for 9.5Bruce Momjian2015-05-231-28/+27
* Attach ON CONFLICT SET ... WHERE to the correct planstate.Andres Freund2015-05-191-1/+1
* Fix ON CONFLICT bugs that manifest when used in rules.Andres Freund2015-05-131-0/+1
* Add support for doing late row locking in FDWs.Tom Lane2015-05-121-1/+1
* Add support for INSERT ... ON CONFLICT DO NOTHING/UPDATE.Andres Freund2015-05-081-18/+441
* Fix various typos and grammar errors in comments.Andres Freund2015-04-261-1/+1
* Perform RLS WITH CHECK before constraints, etcStephen Frost2015-04-241-9/+49
* Update copyright for 2015Bruce Momjian2015-01-061-1/+1
* pgindent run for 9.4Bruce Momjian2014-05-061-12/+14
* Offer triggers on foreign tables.Noah Misch2014-03-231-38/+52
* Update copyright for 2014Bruce Momjian2014-01-071-1/+1
* Don't allow system columns in CHECK constraints, except tableoid.Robert Haas2013-09-231-0/+12
* WITH CHECK OPTION support for auto-updatable VIEWsStephen Frost2013-07-181-0/+33
* Add support for REFRESH MATERIALIZED VIEW CONCURRENTLY.Kevin Grittner2013-07-161-2/+3
* pgindent run for release 9.3Bruce Momjian2013-05-291-17/+19
* Support writable foreign tables.Tom Lane2013-03-101-18/+133
* Improve concurrency of foreign key lockingAlvaro Herrera2013-01-231-1/+5
* Update copyrights for 2013Bruce Momjian2013-01-011-1/+1
* Throw error if expiring tuple is again updated or deleted.Kevin Grittner2012-10-261-18/+75
* Split tuple struct defs from htup.h to htup_details.hAlvaro Herrera2012-08-301-0/+1
* Run pgindent on 9.2 source tree in preparation for first 9.3Bruce Momjian2012-06-101-2/+2
* Fix handling of data-modifying CTE subplans in EvalPlanQual.Tom Lane2012-01-281-9/+17
* Update copyright notices for year 2012.Bruce Momjian2012-01-011-1/+1
* Move Trigger and TriggerDesc structs out of rel.h into a new reltrigger.hAlvaro Herrera2011-07-041-0/+1
* pgindent run before PG 9.1 beta 1.Bruce Momjian2011-04-101-20/+20
* Fix order of shutdown processing when CTEs contain inter-references.Tom Lane2011-02-251-3/+6
* Support data-modifying commands (INSERT/UPDATE/DELETE) in WITH.Tom Lane2011-02-251-47/+104
* Fix dangling-pointer problem in before-row update trigger processing.Tom Lane2011-02-211-85/+18
* Fix PlanRowMark/ExecRowMark structures to handle inheritance correctly.Tom Lane2011-01-121-20/+22
* Stamp copyrights for year 2011.Bruce Momjian2011-01-011-1/+1
* Support triggers on views.Tom Lane2010-10-101-176/+323
* Remove cvs keywords from all files.Magnus Hagander2010-09-201-1/+1
* SERIALIZABLE transactions are actually implemented beneath the covers withJoe Conway2010-09-111-5/+5
* Reset the per-output-tuple exprcontext each time through the main loop inTom Lane2010-08-181-1/+9