aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/explain.c
Commit message (Expand)AuthorAge
* pgindent run for 9.0Bruce Momjian2010-02-26
* Add query text to auto_explain output.Andrew Dunstan2010-02-16
* revert to showing buffer counts in explain (buffers)Greg Stark2010-02-16
* Display explain buffers measurements in memory units rather than blocks. Also...Greg Stark2010-02-15
* Augment EXPLAIN output with more details on Hash nodes.Robert Haas2010-02-01
* Do parse analysis of an EXPLAIN's contained statement during the normalTom Lane2010-01-15
* Update copyright for the year 2010.Bruce Momjian2010-01-02
* Several fixes for EXPLAIN (FORMAT YAML), plus one for EXPLAIN (FORMAT JSON).Robert Haas2009-12-16
* Add an EXPLAIN (BUFFERS) option to show buffer-usage statistics.Robert Haas2009-12-15
* Export ExplainBeginOutput() and ExplainEndOutput() for auto_explain.Robert Haas2009-12-12
* Add YAML to list of EXPLAIN formats. Greg Sabino Mullane, reviewed by Takahir...Andrew Dunstan2009-12-11
* Add support for invoking parser callback hooks via SPI and in cached plans.Tom Lane2009-11-04
* Move the handling of SELECT FOR UPDATE locking and rechecking out ofTom Lane2009-10-12
* Split the processing of INSERT/UPDATE/DELETE operations out of execMain.c.Tom Lane2009-10-10
* Include resjunk columns in EXPLAIN VERBOSE output lists. Per discussion.Tom Lane2009-08-22
* Extend EXPLAIN to support output in XML or JSON format.Tom Lane2009-08-10
* Extend EXPLAIN to allow generic options to be specified.Tom Lane2009-07-26
* Assorted minor refactoring in EXPLAIN.Tom Lane2009-07-24
* 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian2009-06-11
* Change EXPLAIN output so that subplans and initplans (particularly CTEs)Tom Lane2009-04-05
* Include a pointer to the query's source text in QueryDesc structs. This isTom Lane2009-01-02
* Update copyright for 2009.Bruce Momjian2009-01-01
* Support window functions a la SQL:2008.Tom Lane2008-12-28
* Some infrastructure changes for the upcoming auto-explain contrib module:Tom Lane2008-11-19
* Fix up ruleutils.c for CTE features. The main problem was thatTom Lane2008-10-06
* Implement SQL-standard WITH clauses, including WITH RECURSIVE.Tom Lane2008-10-04
* Cause the output from debug_print_parse, debug_print_rewritten, andTom Lane2008-08-19
* Implement SEMI and ANTI joins in the planner and executor. (Semijoins replaceTom Lane2008-08-14
* Support hashing for duplicate-elimination in INTERSECT and EXCEPT queries.Tom Lane2008-08-07
* Move the "instr_time" typedef and associated macros into a new headerTom Lane2008-05-14
* Improve snapshot manager by keeping explicit track of snapshots.Alvaro Herrera2008-05-12
* Cause EXPLAIN's VERBOSE option to print the target list (output column list)Tom Lane2008-04-18
* Add some code to EXPLAIN to show the targetlist (ie, output columns)Tom Lane2008-04-17
* Rename snapmgmt.c/h to snapmgr.c/h, for consistency with other files.Alvaro Herrera2008-03-26
* Separate snapshot management code from tuple visibility code, create aAlvaro Herrera2008-03-26
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-01
* Avoid incrementing the CommandCounter when CommandCounterIncrement is calledTom Lane2007-11-30
* Re-run pgindent with updated list of typedefs. (Updated README shouldBruce Momjian2007-11-15
* pgindent run for 8.3.Bruce Momjian2007-11-15
* Arrange to cache a ResultRelInfo in the executor's EState for relations thatTom Lane2007-08-15
* Create hooks to let a loadable plugin monitor (or even replace) the plannerTom Lane2007-05-25
* Add a line to the EXPLAIN ANALYZE output for a Sort node, showing theTom Lane2007-05-04
* Modify processing of DECLARE CURSOR and EXPLAIN so that they can resolve theTom Lane2007-04-27
* Expose more cursor-related functionality in SPI: specifically, allowTom Lane2007-04-16
* First phase of plan-invalidation project: create a plan cache managementTom Lane2007-03-13
* Now that plans have flat rangetable lists, it's a lot easier to get EXPLAIN toTom Lane2007-02-23
* Change Agg and Group nodes so that Vars contained in their targetlistsTom Lane2007-02-22
* Turn the rangetable used by the executor into a flat list, and avoid storingTom Lane2007-02-22
* Remove the Query structure from the executor's API. This allows us to stopTom Lane2007-02-20
* Put function expressions and values lists into FunctionScan and ValuesScanTom Lane2007-02-19