summaryrefslogtreecommitdiff
path: root/src/backend/commands/explain.c
AgeCommit message (Expand)Author
2003-05-28Knock down a couple more lappend() hotspots for large WHERE clauses.Tom Lane
2003-05-08Update 3.0 protocol support to match recent agreements about how toTom Lane
2003-05-06Restructure command destination handling so that we pass aroundTom Lane
2003-05-06Implement feature of new FE/BE protocol whereby RowDescription identifiesTom Lane
2003-04-24Infrastructure for upgraded error reporting mechanism. elog.c isTom Lane
2003-04-03Prevent EXPLAIN (without ANALYZE) SELECT ... INTO from creating an INTOTom Lane
2003-03-10Restructure parsetree representation of DECLARE CURSOR: now it's aTom Lane
2003-02-10Add code to show join rule (for outer and IN joins) in join type name.Tom Lane
2003-02-09Create a distinction between Lists of integers and Lists of OIDs, to getTom Lane
2003-02-08Replace planner's representation of relation sets, per pghackers discussion.Tom Lane
2003-02-02Implement EXPLAIN EXECUTE. By Neil Conway, with some kibitzing fromTom Lane
2002-12-15Revise executor APIs so that all per-query state structure is built inTom Lane
2002-12-14Clean up plantree representation of SubPlan-s --- SubLink does not appearTom Lane
2002-12-13Phase 3 of read-only-plans project: ExecInitExpr now builds expressionTom Lane
2002-12-12Phase 2 of read-only-plans project: restructure expression-tree nodesTom Lane
2002-12-06Explain's code for showing quals of SubqueryScan nodes has been brokenTom Lane
2002-12-05Phase 1 of read-only-plans project: cause executor state nodes to pointTom Lane
2002-11-13Add new palloc0 call as merge of palloc and MemSet(0).Bruce Momjian
2002-11-11Back out use of palloc0 in place if palloc/MemSet. Seems constant lenBruce Momjian
2002-11-10Merge palloc()/MemSet(0) calls into a single palloc0() call.Bruce Momjian
2002-11-06First phase of implementing hash-based grouping/aggregation. An AGG planTom Lane
2002-10-14As Niel so nicely pointed out this morning, the output of EXPLAINBruce Momjian
2002-09-19Department of second thoughts: suppressing implicit casts everywhere inTom Lane
2002-09-04pgindent run.Bruce Momjian
2002-09-02Code review for HeapTupleHeader changes. Add version number to page headersTom Lane
2002-08-29Code review for standalone composite types, query-specified compositeTom Lane
2002-07-20Code review for SHOW output changes; fix horology expected files forTom Lane
2002-07-20Fix problems caused by code drift of API for without-oids.Bruce Momjian
2002-07-20> 2. This patch includes the same Table Function API fixes that IBruce Momjian
2002-07-20oid is needed, it is added at the end of the struct (after the nullBruce Momjian
2002-06-20Update copyright to 2002.Bruce Momjian
2002-06-13Further tweaks to support display of sort keys in EXPLAIN --- initialTom Lane
2002-05-18Add display of sort keys to the default EXPLAIN output.Tom Lane
2002-05-12First pass at set-returning-functions in FROM, by Joe Conway withTom Lane
2002-05-03Use quote_identifier on relation names in EXPLAIN output, per suggestionTom Lane
2002-03-24Tweak labeling of plan qual conditions for more consistency.Tom Lane
2002-03-24EXPLAIN output now comes out as a query result, not a NOTICE message.Tom Lane
2002-03-22A little further progress on schemas: push down RangeVars intoTom Lane
2002-03-21First phase of SCHEMA changes, concentrating on fixing the grammar andTom Lane
2002-03-12Restructure representation of join alias variables. An explicit JOINTom Lane
2002-03-06Change made to elog:Bruce Momjian
2002-03-02Commit to match discussed elog() changes. Only update is that LOG isBruce Momjian
2002-02-26Restructure command-completion-report code so that there is just oneTom Lane
2001-10-25pgindent run on all C files. Java run to follow. initdb/regressionBruce Momjian
2001-09-18EXPLAIN ANALYZE feature to measure and show actual runtimes and tupleTom Lane
2001-03-22pgindent run. Make it all clean.Bruce Momjian
2001-01-27Suppress coredump when EXPLAINing query that is rewritten to includeTom Lane
2001-01-24Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group.Bruce Momjian
2000-11-12Restructure handling of inheritance queries so that they work with outerTom Lane
2000-10-26Re-implement LIMIT/OFFSET as a plan node type, instead of a hack inTom Lane