summaryrefslogtreecommitdiff
path: root/src/backend/commands/explain.c
AgeCommit message (Expand)Author
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-17Rename 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-22Support 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-20Clarify 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-04Add 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-20Restructure SELECT INTO's parsetree representation into CreateTableAsStmt.Tom Lane
2012-02-23Make 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
2012-02-03Add array_to_json and row_to_json functions.Andrew Dunstan
2012-01-31Built-in JSON data type.Robert Haas
2012-01-26Instrument index-only scans to count heap fetches performed.Robert Haas
2012-01-01Update copyright notices for year 2012.Bruce Momjian
2011-10-11Rearrange the implementation of index-only scans.Tom Lane
2011-10-08Support index-only scans using the visibility map to avoid heap fetches.Tom Lane
2011-09-22Make EXPLAIN ANALYZE report the numbers of rows rejected by filter steps.Tom Lane
2011-09-01Remove unnecessary #include references, per pgrminclude script.Bruce Momjian
2011-07-04Move Trigger and TriggerDesc structs out of rel.h into a new reltrigger.hAlvaro Herrera
2011-04-11Clean up most -Wunused-but-set-variable warnings from gcc 4.6Peter Eisentraut
2011-04-10pgindent run before PG 9.1 beta 1.Bruce Momjian
2011-03-01Include the target table in EXPLAIN output for ModifyTable nodes.Tom Lane
2011-03-01Rearrange snapshot handling to make rule expansion more consistent.Tom Lane