summaryrefslogtreecommitdiff
path: root/src/backend/commands/explain.c
AgeCommit message (Expand)Author
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
2012-02-03Add array_to_json and row_to_json functions.Andrew Dunstan
2012-01-31Built-in JSON data type.Robert Haas
2012-01-25Instrument 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-07Support 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-02-28Rearrange snapshot handling to make rule expansion more consistent.Tom Lane
2011-02-27Refactor the executor's API to support data-modifying CTEs better.Tom Lane
2011-02-20Implement an API to let foreign-data wrappers actually be functional.Tom Lane
2011-01-01Stamp copyrights for year 2011.Bruce Momjian
2010-12-06Put only single space after "Sort Method:", for consistencyPeter Eisentraut
2010-12-02Create core infrastructure for KNNGIST.Tom Lane
2010-11-23Remove useless whitespace at end of linesPeter Eisentraut
2010-10-14Support MergeAppend plans, to allow sorted output from append relations.Tom Lane
2010-09-20Remove cvs keywords from all files.Magnus Hagander
2010-08-24Make EXPLAIN show the function call expression of a FunctionScan plan node,Tom Lane
2010-07-13Teach EXPLAIN to print PARAM_EXEC Params as the referenced expressions,Tom Lane
2010-06-10Quote all string values in EXPLAIN (FORMAT YAML) output.Robert Haas
2010-06-09Attempt to fix EXPLAIN (FORMAT YAML) quoting to behave sanely.Robert Haas
2010-02-26pgindent run for 9.0Bruce Momjian
2010-02-16Add query text to auto_explain output.Andrew Dunstan
2010-02-16revert to showing buffer counts in explain (buffers)Greg Stark
2010-02-15Display explain buffers measurements in memory units rather than blocks. Also...Greg Stark
2010-02-01Augment EXPLAIN output with more details on Hash nodes.Robert Haas
2010-01-15Do parse analysis of an EXPLAIN's contained statement during the normalTom Lane
2010-01-02Update copyright for the year 2010.Bruce Momjian
2009-12-16Several fixes for EXPLAIN (FORMAT YAML), plus one for EXPLAIN (FORMAT JSON).Robert Haas
2009-12-15Add an EXPLAIN (BUFFERS) option to show buffer-usage statistics.Robert Haas
2009-12-12Export ExplainBeginOutput() and ExplainEndOutput() for auto_explain.Robert Haas
2009-12-11Add YAML to list of EXPLAIN formats. Greg Sabino Mullane, reviewed by Takahir...Andrew Dunstan
2009-11-04Add support for invoking parser callback hooks via SPI and in cached plans.Tom Lane
2009-10-12Move the handling of SELECT FOR UPDATE locking and rechecking out ofTom Lane
2009-10-10Split the processing of INSERT/UPDATE/DELETE operations out of execMain.c.Tom Lane
2009-08-22Include resjunk columns in EXPLAIN VERBOSE output lists. Per discussion.Tom Lane