summaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeModifyTable.c
Commit message (Expand)AuthorAgeFilesLines
* Fix buffer refcount leak with FDW bulk insertsMichael Paquier2023-04-251-2/+8
* Fix various typos and incorrect/outdated name referencesDavid Rowley2023-04-191-1/+1
* Fix various typosDavid Rowley2023-04-181-1/+1
* Revert 764da7710bAlexander Korotkov2023-04-031-35/+13
* Revert 11470f544eAlexander Korotkov2023-04-031-122/+166
* Allow locking updated tuples in tuple_update() and tuple_delete()Alexander Korotkov2023-03-231-166/+122
* Evade extra table_tuple_fetch_row_version() in ExecUpdate()/ExecDelete()Alexander Korotkov2023-03-231-13/+35
* Ignore BRIN indexes when checking for HOT updatesTomas Vondra2023-03-201-5/+8
* Fix MERGE command tag for actions blocked by BEFORE ROW triggers.Dean Rasheed2023-03-131-4/+6
* Fix concurrent update issues with MERGE.Dean Rasheed2023-03-131-120/+53
* Fix some more cases of missed GENERATED-column updates.Tom Lane2023-03-061-50/+75
* Fix MERGE command tag for cross-partition updates.Dean Rasheed2023-02-221-1/+1
* Remove duplicated comment in nodeModifyTable.cMichael Paquier2023-02-161-3/+0
* Don't rely on uninitialized value in MERGE / DELETEAlvaro Herrera2023-02-151-8/+7
* Ensure that MERGE recomputes GENERATED expressions properly.Dean Rasheed2023-01-301-2/+2
* Make new GENERATED-expressions code more bulletproof.Tom Lane2023-01-151-1/+1
* Fix calculation of which GENERATED columns need to be updated.Tom Lane2023-01-051-47/+107
* Update copyright for 2023Bruce Momjian2023-01-021-1/+1
* Remove new structure member from ResultRelInfo.Etsuro Fujita2022-12-081-15/+16
* Generalize ri_RootToPartitionMap to use for non-partition childrenAlvaro Herrera2022-12-021-1/+1
* Fix handling of pending inserts in nodeModifyTable.c.Etsuro Fujita2022-11-251-21/+75
* Fix MERGE tuple count with DO NOTHINGAlvaro Herrera2022-11-171-1/+1
* Fix outdated comment in ExecDeleteAlvaro Herrera2022-11-171-7/+1
* Fix copy-and-pasteo in comment.Etsuro Fujita2022-11-021-1/+1
* Remove unnecessary semicolons after goto labelsJohn Naylor2022-10-101-3/+3
* Update comment in ExecInsert() regarding batch insertion.Etsuro Fujita2022-09-291-3/+2
* Message style improvementsPeter Eisentraut2022-09-241-2/+2
* Add CHECK_FOR_INTERRUPTS in ExecInsert's speculative insertion loop.Tom Lane2022-08-041-1/+3
* Pre-beta mechanical code beautification.Tom Lane2022-05-121-1/+1
* Move ModifyTableContext->lockmode to UpdateContextAlvaro Herrera2022-04-201-15/+8
* ExecModifyTable: use context.planSlot instead of planSlotAlvaro Herrera2022-04-201-14/+10
* Add support for MERGE SQL commandAlvaro Herrera2022-03-281-36/+900
* Blind fix for uninitialized memory bug in ba9a7e392171Alvaro Herrera2022-03-201-1/+1
* Enforce foreign key correctly during cross-partition updatesAlvaro Herrera2022-03-201-13/+138
* Fix an outdated and grammatically wrong commentAlvaro Herrera2022-03-191-3/+3
* Split ExecUpdate and ExecDelete into reusable piecesAlvaro Herrera2022-03-171-299/+482
* Update copyright for 2022Bruce Momjian2022-01-071-1/+1
* Use appropriate tuple descriptor in FDW batchingTomas Vondra2021-08-121-2/+4
* Pre branch pgindent / pgperltidy runAndrew Dunstan2021-06-281-10/+11
* Fix copying data into slots with FDW batchingTomas Vondra2021-06-161-4/+6
* Optimize creation of slots for FDW bulk insertsTomas Vondra2021-06-111-16/+36
* Fix usage of "tableoid" in GENERATED expressions.Tom Lane2021-05-211-6/+18
* Initial pgindent and pgperltidy run for v14.Tom Lane2021-05-121-33/+33
* Fix mishandling of resjunk columns in ON CONFLICT ... UPDATE tlists.Tom Lane2021-05-101-13/+16
* Comment cleanup for a1115fa07.Tom Lane2021-04-071-4/+1
* Postpone some more stuff out of ExecInitModifyTable.Tom Lane2021-04-061-158/+207
* Postpone some stuff out of ExecInitModifyTable.Tom Lane2021-04-061-117/+130
* Rework planning and execution of UPDATE and DELETE.Tom Lane2021-03-311-248/+480
* Fix permission checks on constraint violation errors on partitions.Heikki Linnakangas2021-02-081-2/+2
* Fix initialization of FDW batching in ExecInitModifyTableTomas Vondra2021-01-211-10/+21