aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor
Commit message (Expand)AuthorAge
* Centralize executor-related partitioning code.Robert Haas2017-11-15
* Add parallel_leader_participation GUC.Robert Haas2017-11-15
* Track in the plan the types associated with PARAM_EXEC parameters.Robert Haas2017-11-13
* Change TRUE/FALSE to true/falsePeter Eisentraut2017-11-08
* Revert bogus fixes of HOT-freezing bugAlvaro Herrera2017-11-02
* Allow bitmap scans to operate as index-only scans when possible.Tom Lane2017-11-01
* Improve comments for parallel executor estimation functions.Robert Haas2017-10-28
* Fix mistaken failure to allow parallelism in corner case.Robert Haas2017-10-27
* Support domains over composite types.Tom Lane2017-10-26
* Treat aggregate direct arguments as per-agg data not per-trans data.Tom Lane2017-10-16
* Allow the built-in ordered-set aggregates to share transition state.Tom Lane2017-10-16
* Repair breakage of aggregate FILTER option.Tom Lane2017-10-16
* Restore nodeAgg.c's ability to check for improperly-nested aggregates.Tom Lane2017-10-15
* Explicitly track whether aggregate final functions modify transition state.Tom Lane2017-10-14
* Use ResultRelInfo ** rather than ResultRelInfo * for tuple routing.Robert Haas2017-10-12
* Fix AggGetAggref() so it won't lie to aggregate final functions.Tom Lane2017-10-12
* Fix logical replication to fire BEFORE ROW DELETE triggers.Robert Haas2017-10-12
* Prevent sharing transition states between ordered-set aggregates.Tom Lane2017-10-11
* pg_stat_statements: Widen query IDs from 32 bits to 64 bits.Robert Haas2017-10-11
* Fix mistakes in comments.Robert Haas2017-10-11
* Reduce memory usage of targetlist SRFs.Andres Freund2017-10-08
* Fix crash when logical decoding is invoked from a PL function.Tom Lane2017-10-06
* Fix intra-query memory leakage in nodeProjectSet.c.Tom Lane2017-10-06
* Fix traversal of half-frozen update chainsAlvaro Herrera2017-10-06
* Allow DML commands that create tables to use parallel query.Robert Haas2017-10-05
* Support arrays over domains.Tom Lane2017-09-30
* Marginal improvement for generated code in execExprInterp.c.Tom Lane2017-09-29
* Make construct_[md_]array return a valid empty array for zero-size input.Tom Lane2017-09-25
* Fix SQL-spec incompatibilities in new transition table feature.Tom Lane2017-09-16
* Remove TupleDesc remapping logic from tqueue.c.Andres Freund2017-09-14
* Properly check interrupts in execScan.c.Andres Freund2017-09-14
* Message style fixesPeter Eisentraut2017-09-11
* Quick-hack fix for foreign key cascade vs triggers with transition tables.Tom Lane2017-09-10
* Reduce excessive dereferencing of function pointersPeter Eisentraut2017-09-07
* Even if some partitions are foreign, allow tuple routing.Robert Haas2017-09-07
* Improve division of labor between execParallel.c and nodeGather[Merge].c.Tom Lane2017-09-01
* Avoid memory leaks when a GatherMerge node is rescanned.Tom Lane2017-08-31
* Clean up shm_mq cleanup.Tom Lane2017-08-31
* Code review for nodeGatherMerge.c.Tom Lane2017-08-30
* Separate reinitialization of shared parallel-scan state from ExecReScan.Tom Lane2017-08-30
* Force rescanning of parallel-aware scan nodes below a Gather[Merge].Tom Lane2017-08-30
* Propagate sort instrumentation from workers back to leader.Robert Haas2017-08-29
* Push tuple limits through Gather and Gather Merge.Robert Haas2017-08-29
* Code review for pushing LIMIT through subqueries.Tom Lane2017-08-25
* Push limit through subqueries to underlying sort, where possible.Robert Haas2017-08-21
* Change tupledesc->attrs[n] to TupleDescAttr(tupledesc, n).Andres Freund2017-08-20
* Fix interaction of triggers, partitioning, and EXPLAIN ANALYZE.Robert Haas2017-08-18
* Don't lock tables in RelationGetPartitionDispatchInfo.Robert Haas2017-08-17
* Fix ExecReScanGatherMerge.Tom Lane2017-08-17
* Add missing call to ExecReScanGatherMerge.Robert Haas2017-08-15