summaryrefslogtreecommitdiff
path: root/src/backend/commands/explain.c
AgeCommit message (Expand)Author
2017-02-06Fix typos in comments.Heikki Linnakangas
2016-10-20Fix EXPLAIN so that it doesn't emit invalid XML in corner cases.Tom Lane
2016-08-12Fix inappropriate printing of never-measured times in EXPLAIN.Tom Lane
2015-07-25Redesign tablesample method API, and do extensive code review.Tom Lane
2015-06-26Improve handling of CustomPath/CustomPlan(State) children.Robert Haas
2015-05-23pgindent run for 9.5Bruce Momjian
2015-05-16Support GROUPING SETS, CUBE and ROLLUP.Andres Freund
2015-05-15Fix uninitialized variable.Tom Lane
2015-05-15TABLESAMPLE, SQL Standard and extensibleSimon Riggs
2015-05-10Code review for foreign/custom join pushdown patch.Tom Lane
2015-05-08Add support for INSERT ... ON CONFLICT DO NOTHING/UPDATE.Andres Freund
2015-05-01Allow FDWs and custom scan providers to replace joins with scans.Robert Haas
2015-03-22Allow foreign tables to participate in inheritance.Tom Lane
2015-02-17Fix EXPLAIN output for cases where parent table is excluded by constraints.Tom Lane
2015-01-16Show sort ordering options in EXPLAIN output.Tom Lane
2015-01-15Rearrange explain.c's API so callers need not embed sizeof(ExplainState).Tom Lane
2015-01-15Improve performance of EXPLAIN with large range tables.Tom Lane
2015-01-06Update copyright for 2015Bruce Momjian
2014-12-18Remove odd blank line in comment.Fujii Masao
2014-11-20Add missing case for CustomScan.Tom Lane
2014-11-07Introduce custom path and scan providers.Robert Haas
2014-10-15Print planning time only in EXPLAIN ANALYZE, not plain EXPLAIN.Tom Lane
2014-10-13Increase number of hash join buckets for underestimate.Kevin Grittner
2014-10-08Split builtins.h to a new header ruleutils.hAlvaro Herrera
2014-07-14Prevent bitmap heap scans from showing unnecessary block info in EXPLAIN ANAL...Fujii Masao
2014-05-20Prevent auto_explain from changing the output of a user's EXPLAIN.Tom Lane
2014-05-06pgindent run for 9.4Bruce Momjian
2014-04-16Rename EXPLAIN ANALYZE's "total runtime" output to "execution time".Tom Lane
2014-01-29Include planning time in EXPLAIN ANALYZE output.Robert Haas
2014-01-20Expose a routine to print triggers during EXPLAIN ANALYZEAlvaro Herrera
2014-01-13Make bitmap heap scans show exact/lossy block info in EXPLAIN ANALYZE.Robert Haas
2014-01-07Update copyright for 2014Bruce Momjian
2013-12-12Improve EXPLAIN to print the grouping columns in Agg and Group nodes.Tom Lane
2013-11-21Support multi-argument UNNEST(), and TABLE() syntax for multiple functions.Tom Lane
2013-10-31Use appendStringInfoString instead of appendStringInfo where possible.Robert Haas
2013-05-29pgindent run for release 9.3Bruce Momjian
2013-05-19Clarify documentation of EXPLAIN (TIMING OFF) option.Tom Lane
2013-04-12Clean up the mess around EXPLAIN and materialized views.Tom Lane
2013-04-09Adjust ExplainOneQuery_hook_type to take a DestReceiver argument.Robert Haas
2013-03-10Support writable foreign tables.Tom Lane
2013-03-03Add a materialized view relations.Kevin Grittner
2013-01-01Update copyrights for 2013Bruce Momjian
2012-12-31Fix ruleutils to cope with conflicts from adding/dropping/renaming columns.Tom Lane
2012-09-21Improve ruleutils.c's heuristics for dealing with rangetable aliases.Tom Lane
2012-06-10Run pgindent on 9.2 source tree in preparation for first 9.3Bruce Momjian
2012-04-29Rename I/O timing statistics columns to blk_read_time and blk_write_time.Tom Lane
2012-03-27New GUC, track_iotiming, to track I/O timings.Robert Haas
2012-03-19Restructure SELECT INTO's parsetree representation into CreateTableAsStmt.Tom Lane
2012-02-22Make EXPLAIN (BUFFERS) track blocks dirtied, as well as those written.Robert Haas
2012-02-07Add TIMING option to EXPLAIN, to allow eliminating of timing overhead.Robert Haas