summaryrefslogtreecommitdiff
path: root/src/backend/executor/execPartition.c
Commit message (Expand)AuthorAgeFilesLines
* Remove various duplicated wordsDavid Rowley2022-09-201-2/+2
* More -Wshadow=compatible-local warning fixesDavid Rowley2022-08-261-1/+0
* Avoid using list_length() to test for empty list.Tom Lane2022-08-171-1/+1
* Have ExecFindPartition cache the last found partitionDavid Rowley2022-08-021-19/+173
* adjust_partition_colnos mustn't be called if not neededAlvaro Herrera2022-04-121-0/+6
* Revert "Rewrite some RI code to avoid using SPI"Alvaro Herrera2022-04-071-168/+6
* Rewrite some RI code to avoid using SPIAlvaro Herrera2022-04-071-6/+168
* Refactor and cleanup runtime partition prune code a littleAlvaro Herrera2022-04-051-220/+239
* Add support for MERGE SQL commandAlvaro Herrera2022-03-281-4/+109
* Update copyright for 2022Bruce Momjian2022-01-071-1/+1
* Use l*_node() family of functions where appropriatePeter Eisentraut2021-07-191-1/+1
* Initial pgindent and pgperltidy run for v14.Tom Lane2021-05-121-2/+2
* Fix mishandling of resjunk columns in ON CONFLICT ... UPDATE tlists.Tom Lane2021-05-101-77/+46
* Fix relcache inconsistency hazard in partition detachAlvaro Herrera2021-04-221-11/+8
* Postpone some stuff out of ExecInitModifyTable.Tom Lane2021-04-061-135/+48
* Rework planning and execution of UPDATE and DELETE.Tom Lane2021-03-311-7/+7
* ALTER TABLE ... DETACH PARTITION ... CONCURRENTLYAlvaro Herrera2021-03-251-6/+23
* Fix tuple routing to initialize batching only for insertsTomas Vondra2021-02-181-1/+2
* Fix permission checks on constraint violation errors on partitions.Heikki Linnakangas2021-02-081-16/+17
* Fix hash partition pruning with asymmetric partition sets.Tom Lane2021-01-281-3/+1
* Implement support for bulk inserts in postgres_fdwTomas Vondra2021-01-201-0/+17
* Update copyright for 2021Bruce Momjian2021-01-021-1/+1
* Improve hash_create()'s API for some added robustness.Tom Lane2020-12-151-1/+0
* Remove PartitionRoutingInfo struct.Heikki Linnakangas2020-10-191-17/+17
* Revise child-to-root tuple conversion map management.Heikki Linnakangas2020-10-191-14/+9
* Don't fetch partition check expression during InitResultRelInfo.Tom Lane2020-09-161-1/+1
* Check default partitions constraints while descendingAlvaro Herrera2020-09-081-25/+102
* Fix matching of sub-partitions when a partitioned plan is stale.Tom Lane2020-08-051-11/+36
* Add object names to partition integrity violations.Amit Kapila2020-03-231-1/+2
* Remove utils/acl.h from catalog/objectaddress.hPeter Eisentraut2020-03-101-0/+1
* Update copyrights for 2020Bruce Momjian2020-01-011-1/+1
* Load relcache entries' partitioning data on-demand, not immediately.Tom Lane2019-12-251-1/+0
* Refactor attribute mappings used in logical tuple conversionMichael Paquier2019-12-181-31/+26
* Remove 'msg' parameter from convert_tuples_by_nameAlvaro Herrera2019-09-031-12/+6
* Use appendBinaryStringInfo in more places where the length is knownDavid Rowley2019-07-231-1/+1
* Represent Lists as expansible arrays, not chains of cons-cells.Tom Lane2019-07-151-1/+1
* Phase 2 pgindent run for v12.Tom Lane2019-05-221-28/+28
* Initial pgindent run for v12.Tom Lane2019-05-221-12/+12
* Restructure creation of run-time pruning steps.Tom Lane2019-05-171-75/+105
* Fix thinko in ExecCleanupTupleRouting().Etsuro Fujita2019-04-151-6/+6
* tableam: Add table_multi_insert() and revamp/speed-up COPY FROM buffering.Andres Freund2019-04-041-0/+1
* Speed up planning when partitions can be pruned at plan time.Tom Lane2019-03-301-3/+11
* Collations with nondeterministic comparisonPeter Eisentraut2019-03-221-0/+1
* tableam: Add and use scan APIs.Andres Freund2019-03-111-7/+4
* Allow ATTACH PARTITION with only ShareUpdateExclusiveLock.Robert Haas2019-03-071-19/+77
* Don't reuse slots between root and partition in ON CONFLICT ... UPDATE.Andres Freund2019-03-061-14/+38
* Use a virtual rather than a heap slot in two places where that suffices.Andres Freund2019-03-011-1/+1
* Move code for managing PartitionDescs into a new file, partdesc.cRobert Haas2019-02-211-0/+1
* Delay lock acquisition for partitions until we route a tuple to them.Robert Haas2019-02-211-19/+16
* Replace uses of heap_open et al with the corresponding table_* function.Andres Freund2019-01-211-4/+4