summaryrefslogtreecommitdiff
path: root/src/backend/commands/explain.c
AgeCommit message (Expand)Author
2020-01-26Fix EXPLAIN (SETTINGS) to follow policy about when to print empty fields.Tom Lane
2020-01-25Clean up EXPLAIN's handling of per-worker details.Tom Lane
2020-01-04Make better use of ParseState in ProcessUtilityPeter Eisentraut
2020-01-01Update copyrights for 2020Bruce Momjian
2019-12-17Fix "force_parallel_mode = regress" to work with ANALYZE + VERBOSE.Tom Lane
2019-12-11Further adjust EXPLAIN's choices of table alias names.Tom Lane
2019-07-15Represent Lists as expansible arrays, not chains of cons-cells.Tom Lane
2019-07-04Use appendStringInfoString and appendPQExpBufferStr where possibleDavid Rowley
2019-05-22Phase 2 pgindent run for v12.Tom Lane
2019-05-22Initial pgindent run for v12.Tom Lane
2019-04-03Add SETTINGS option to EXPLAIN, to print modified settings.Tomas Vondra
2019-01-29Refactor planner's header files.Tom Lane
2019-01-29Make some small planner API cleanups.Tom Lane
2019-01-02Update copyright for 2019Bruce Momjian
2018-12-19Make type "name" collation-aware.Tom Lane
2018-11-21Remove WITH OIDS support, change oid catalog column visibility.Andres Freund
2018-11-16Introduce notion of different types of slots (without implementing them).Andres Freund
2018-10-03Fix issues around EXPLAIN with JIT.Andres Freund
2018-09-25Collect JIT instrumentation from workers.Andres Freund
2018-09-24Make EXPLAIN output for JIT compilation more dense.Andres Freund
2018-07-18Fix misc typos, mostly in comments.Heikki Linnakangas
2018-05-01Clean up warnings from -Wimplicit-fallthrough.Tom Lane
2018-04-12Revert MERGE patchSimon Riggs
2018-04-10Fix IndexOnlyScan counter for heap fetches in parallel modeAlvaro Herrera
2018-04-07Support partition pruning at execution timeAlvaro Herrera
2018-04-03MERGE SQL Command following SQL:2016Simon Riggs
2018-04-02Revert "Modified files for MERGE"Simon Riggs
2018-04-02Modified files for MERGESimon Riggs
2018-03-28Add EXPLAIN support for JIT.Andres Freund
2018-03-17Add 'unit' parameter to ExplainProperty{Integer,Float}.Andres Freund
2018-03-17Make ExplainPropertyInteger accept 64bit input, remove *Long variant.Andres Freund
2018-03-15Fix more format truncation issuesPeter Eisentraut
2018-02-08Avoid listing the same ResultRelInfo in more than one EState list.Robert Haas
2018-01-11Add QueryEnvironment to ExplainOneQuery_hook's parameter list.Tom Lane
2018-01-03Update copyright for 2018Bruce Momjian
2018-01-01Fix EXPLAIN ANALYZE output for Parallel Hash.Andres Freund
2017-12-05Fix EXPLAIN ANALYZE of hash join when the leader doesn't participate.Andres Freund
2017-11-16Pass InitPlan values to workers via Gather (Merge).Robert Haas
2017-10-05Allow DML commands that create tables to use parallel query.Robert Haas
2017-09-18Make ExplainOpenGroup and ExplainCloseGroup public.Tom Lane
2017-08-29Propagate sort instrumentation from workers back to leader.Robert Haas
2017-08-18Fix interaction of triggers, partitioning, and EXPLAIN ANALYZE.Robert Haas
2017-06-21Phase 3 of pgindent updates.Tom Lane
2017-04-10Improve castNode notation by introducing list-extraction-specific variants.Tom Lane
2017-04-08Optimize joins when the inner relation can be proven unique.Tom Lane
2017-04-01Add infrastructure to support EphemeralNamedRelation references.Kevin Grittner
2017-03-27Support hashed aggregation with grouping sets.Andrew Gierth
2017-03-25Faster expression evaluation and targetlist projection.Andres Freund
2017-03-23Allow for parallel execution whenever ExecutorRun() is done only once.Robert Haas
2017-03-09Add a Gather Merge executor node.Robert Haas