summaryrefslogtreecommitdiff
path: root/src/backend/executor/execPartition.c
AgeCommit message (Expand)Author
2020-01-01Update copyrights for 2020Bruce Momjian
2019-12-25Load relcache entries' partitioning data on-demand, not immediately.Tom Lane
2019-12-18Refactor attribute mappings used in logical tuple conversionMichael Paquier
2019-09-03Remove 'msg' parameter from convert_tuples_by_nameAlvaro Herrera
2019-07-22Use appendBinaryStringInfo in more places where the length is knownDavid Rowley
2019-07-15Represent Lists as expansible arrays, not chains of cons-cells.Tom Lane
2019-05-22Phase 2 pgindent run for v12.Tom Lane
2019-05-22Initial pgindent run for v12.Tom Lane
2019-05-17Restructure creation of run-time pruning steps.Tom Lane
2019-04-15Fix thinko in ExecCleanupTupleRouting().Etsuro Fujita
2019-04-04tableam: Add table_multi_insert() and revamp/speed-up COPY FROM buffering.Andres Freund
2019-03-30Speed up planning when partitions can be pruned at plan time.Tom Lane
2019-03-22Collations with nondeterministic comparisonPeter Eisentraut
2019-03-11tableam: Add and use scan APIs.Andres Freund
2019-03-07Allow ATTACH PARTITION with only ShareUpdateExclusiveLock.Robert Haas
2019-03-06Don't reuse slots between root and partition in ON CONFLICT ... UPDATE.Andres Freund
2019-03-02Use a virtual rather than a heap slot in two places where that suffices.Andres Freund
2019-02-21Move code for managing PartitionDescs into a new file, partdesc.cRobert Haas
2019-02-21Delay lock acquisition for partitions until we route a tuple to them.Robert Haas
2019-01-21Replace uses of heap_open et al with the corresponding table_* function.Andres Freund
2019-01-21Replace heapam.h includes with {table, relation}.h where applicable.Andres Freund
2019-01-15Don't include heapam.h from others headers.Andres Freund
2019-01-02Update copyright for 2019Bruce Momjian
2018-11-22Fix typo in description of ExecFindPartitionMichael Paquier
2018-11-21Fix PartitionDispatchData vertical whitespaceAlvaro Herrera
2018-11-21Remove WITH OIDS support, change oid catalog column visibility.Andres Freund
2018-11-16Avoid re-typedef'ing PartitionTupleRoutingAlvaro Herrera
2018-11-16Redesign initialization of partition routing structuresAlvaro Herrera
2018-11-16Introduce notion of different types of slots (without implementing them).Andres Freund
2018-11-15Improve performance of partition pruning remapping a little.Tom Lane
2018-11-02Fix spelling errors and typos in commentsMagnus Hagander
2018-10-07Remove some unnecessary fields from Plan trees.Tom Lane
2018-10-04Centralize executor's opening/closing of Relations for rangetable entries.Tom Lane
2018-10-02Use slots more widely in tuple mapping code and make naming more consistent.Andres Freund
2018-09-25Split ExecStoreTuple into ExecStoreHeapTuple and ExecStoreBufferHeapTuple.Andres Freund
2018-09-14Move PartitionDispatchData struct definition to execPartition.cAlvaro Herrera
2018-08-16Fix executor prune failure when plan already prunedAlvaro Herrera
2018-08-01Fix run-time partition pruning for appends with multiple source rels.Tom Lane
2018-08-01Fix unnoticed variable shadowing in previous commitAlvaro Herrera
2018-08-01Fix per-tuple memory leak in partition tuple routingAlvaro Herrera
2018-08-01Allow multi-inserts during COPY into a partitioned tablePeter Eisentraut
2018-07-27Use key and partdesc from PartitionDispatch where possible.Robert Haas
2018-06-13Fix some ill-chosen names for globally-visible partition support functions.Tom Lane
2018-06-13Fix up run-time partition pruning's use of relcache's partition data.Tom Lane
2018-06-11Improve ExecFindInitialMatchingSubPlans's subplan renumbering logic.Tom Lane
2018-06-11Don't needlessly check the partition contraint twiceAlvaro Herrera
2018-06-10Assorted cosmetic cleanup of run-time-partition-pruning code.Tom Lane
2018-06-10Relocate partition pruning structs to a saner place.Tom Lane
2018-06-10Improve run-time partition pruning to handle any stable expression.Tom Lane
2018-05-18Further adjust comment in get_partition_dispatch_recurse.Robert Haas