aboutsummaryrefslogtreecommitdiff
path: root/src/backend/optimizer/plan/createplan.c
Commit message (Expand)AuthorAge
* Support window functions a la SQL:2008.Tom Lane2008-12-28
* Fix breakage of bitmap scan plan creation for special index operators suchTom Lane2008-11-20
* Add a concept of "placeholder" variables to the planner. These are variablesTom Lane2008-10-21
* Extend CTE patch to support recursive UNION (ie, without ALL). TheTom Lane2008-10-07
* Implement SQL-standard WITH clauses, including WITH RECURSIVE.Tom Lane2008-10-04
* Fix an oversight in the 8.2 patch that improved mergejoin performance byTom Lane2008-09-05
* Extend the parser location infrastructure to include a location field inTom Lane2008-08-28
* Move exprType(), exprTypmod(), expression_tree_walker(), and related routinesTom Lane2008-08-25
* Implement SEMI and ANTI joins in the planner and executor. (Semijoins replaceTom Lane2008-08-14
* Improve INTERSECT/EXCEPT hashing by realizing that we don't need to make anyTom Lane2008-08-07
* Support hashing for duplicate-elimination in INTERSECT and EXCEPT queries.Tom Lane2008-08-07
* Rearrange the querytree representation of ORDER BY/GROUP BY/DISTINCT itemsTom Lane2008-08-02
* Improve planner's estimation of the size of an append relation: rather thanTom Lane2008-06-27
* Fix a couple of oversights associated with the "physical tlist" optimization:Tom Lane2008-04-17
* Since createplan.c no longer cares whether index operators are lossy, it hasTom Lane2008-04-13
* Phase 2 of project to make index operator lossiness be determined at runtimeTom Lane2008-04-13
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-01
* Re-run pgindent with updated list of typedefs. (Updated README shouldBruce Momjian2007-11-15
* pgindent run for 8.3.Bruce Momjian2007-11-15
* Fix EquivalenceClass code to handle volatile sort expressions in a moreTom Lane2007-11-08
* Last week's patch for make_sort_from_pathkeys wasn't good enough: it hasTom Lane2007-11-08
* Ensure that EquivalenceClasses generated from ORDER BY keys contain properTom Lane2007-11-02
* Teach tuplestore.c to throw away data before the "mark" point when the callerTom Lane2007-05-21
* Teach tuplesort.c about "top N" sorting, in which only the first N tuplesTom Lane2007-05-04
* Some further performance tweaks for planning large inheritance trees thatTom Lane2007-04-21
* Make 'col IS NULL' clauses be indexable conditions.Tom Lane2007-04-06
* Put back copyObject() call I removed in a fit of brain fade. This oneTom Lane2007-02-25
* Turn the rangetable used by the executor into a flat list, and avoid storingTom Lane2007-02-22
* Put function expressions and values lists into FunctionScan and ValuesScanTom Lane2007-02-19
* Add support for cross-type hashing in hash index searches and hash joins.Tom Lane2007-01-30
* Add COST and ROWS options to CREATE/ALTER FUNCTION, plus underlying pg_procTom Lane2007-01-22
* Refactor planner's pathkeys data structure to create a separate, explicitTom Lane2007-01-20
* Change the planner-to-executor API so that the planner tells the executorTom Lane2007-01-10
* Support ORDER BY ... NULLS FIRST/LAST, and add ASC/DESC/NULLS FIRST/NULLS LASTTom Lane2007-01-09
* Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian2007-01-05
* Restructure operator classes to allow improved handling of cross-data-typeTom Lane2006-12-23
* pgindent run for 8.2.Bruce Momjian2006-10-04
* Add support for multi-row VALUES clauses as part of INSERT statementsJoe Conway2006-08-02
* Change LIMIT/OFFSET to use int8Bruce Momjian2006-07-26
* Remove 576 references of include files that were not needed.Bruce Momjian2006-07-14
* Sort reference of include files, "A" - "F".Bruce Momjian2006-07-11
* Revise the planner's handling of "pseudoconstant" WHERE clauses, that isTom Lane2006-07-01
* When a bitmap indexscan is using a partial index, it is necessary to includeTom Lane2006-05-18
* Improve the representation of FOR UPDATE/FOR SHARE so that we canTom Lane2006-04-30
* The 8.1 planner removes WHERE quals from the plan when the quals areTom Lane2006-04-25
* Update copyright for 2006. Update scripts.Bruce Momjian2006-03-05
* When building a bitmap scan, must copy the bitmapqualorig expression treeTom Lane2006-01-29
* Allow row comparisons to be used as indexscan qualifications.Tom Lane2006-01-25
* Teach tid-scan code to make use of "ctid = ANY (array)" clauses, so thatTom Lane2005-11-26
* Teach planner and executor to handle ScalarArrayOpExpr as an indexableTom Lane2005-11-25