summaryrefslogtreecommitdiff
path: root/src/backend/executor/execPartition.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Replace heapam.h includes with {table, relation}.h where applicable.Andres Freund2019-01-211-1/+1
* Don't include heapam.h from others headers.Andres Freund2019-01-141-0/+1
* Update copyright for 2019Bruce Momjian2019-01-021-1/+1
* Fix typo in description of ExecFindPartitionMichael Paquier2018-11-221-2/+2
* Fix PartitionDispatchData vertical whitespaceAlvaro Herrera2018-11-211-0/+6
* Remove WITH OIDS support, change oid catalog column visibility.Andres Freund2018-11-201-1/+1
* Avoid re-typedef'ing PartitionTupleRoutingAlvaro Herrera2018-11-161-2/+2
* Redesign initialization of partition routing structuresAlvaro Herrera2018-11-161-435/+522
* Introduce notion of different types of slots (without implementing them).Andres Freund2018-11-151-3/+5
* Improve performance of partition pruning remapping a little.Tom Lane2018-11-151-39/+60
* Fix spelling errors and typos in commentsMagnus Hagander2018-11-021-1/+1
* Remove some unnecessary fields from Plan trees.Tom Lane2018-10-071-1/+1
* Centralize executor's opening/closing of Relations for rangetable entries.Tom Lane2018-10-041-36/+10
* Use slots more widely in tuple mapping code and make naming more consistent.Andres Freund2018-10-021-65/+36
* Split ExecStoreTuple into ExecStoreHeapTuple and ExecStoreBufferHeapTuple.Andres Freund2018-09-251-2/+2
* Move PartitionDispatchData struct definition to execPartition.cAlvaro Herrera2018-09-141-0/+30
* Fix executor prune failure when plan already prunedAlvaro Herrera2018-08-161-2/+7
* Fix run-time partition pruning for appends with multiple source rels.Tom Lane2018-08-011-160/+239
* Fix unnoticed variable shadowing in previous commitAlvaro Herrera2018-08-011-1/+0
* Fix per-tuple memory leak in partition tuple routingAlvaro Herrera2018-08-011-16/+41
* Allow multi-inserts during COPY into a partitioned tablePeter Eisentraut2018-08-011-2/+3
* Use key and partdesc from PartitionDispatch where possible.Robert Haas2018-07-271-8/+6
* Fix some ill-chosen names for globally-visible partition support functions.Tom Lane2018-06-131-12/+15
* Fix up run-time partition pruning's use of relcache's partition data.Tom Lane2018-06-131-18/+45
* Improve ExecFindInitialMatchingSubPlans's subplan renumbering logic.Tom Lane2018-06-111-46/+22
* Don't needlessly check the partition contraint twiceAlvaro Herrera2018-06-111-3/+2
* Assorted cosmetic cleanup of run-time-partition-pruning code.Tom Lane2018-06-101-86/+77
* Relocate partition pruning structs to a saner place.Tom Lane2018-06-101-1/+1
* Improve run-time partition pruning to handle any stable expression.Tom Lane2018-06-101-118/+130
* Further adjust comment in get_partition_dispatch_recurse.Robert Haas2018-05-181-5/+7
* Improve comment in get_partition_dispatch_recurse.Robert Haas2018-05-161-14/+8
* Fix interaction of foreign tuple routing with remote triggers.Robert Haas2018-05-011-8/+11
* Update ExecInitPartitionInfo commentAlvaro Herrera2018-04-241-2/+1
* Initialize ExprStates once in run-time partition pruningAlvaro Herrera2018-04-241-0/+35
* Add missing "static" marker.Tom Lane2018-04-211-1/+1
* Remove quick path in ExecInitPartitionInfo for equal tupdescsAlvaro Herrera2018-04-191-85/+68
* Ignore whole-rows in INSERT/CONFLICT with partitioned tablesAlvaro Herrera2018-04-161-30/+91
* Reorganize partitioning codeAlvaro Herrera2018-04-141-1/+112
* Revert MERGE patchSimon Riggs2018-04-121-121/+0
* Minor comment updatesAlvaro Herrera2018-04-091-4/+7
* Merge catalog/pg_foo_fn.h headers back into pg_foo.h headers.Tom Lane2018-04-081-1/+1
* Support partition pruning at execution timeAlvaro Herrera2018-04-071-0/+419
* Allow insert and update tuple routing and COPY for foreign tables.Robert Haas2018-04-061-41/+62