aboutsummaryrefslogtreecommitdiff
path: root/src/backend/optimizer/plan/createplan.c
Commit message (Expand)AuthorAge
* 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
* Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian2005-11-22
* Fix oversight in recent changes to enable the 'physical tlist'Tom Lane2005-10-19
* Standard pgindent run for 8.1.Bruce Momjian2005-10-15
* Don't try to remove duplicate OR-subclauses in create_bitmap_subplan andTom Lane2005-10-13
* Fix oversight in indexscan plan creation. I recently added code to useTom Lane2005-10-06
* Clean up possibly-uninitialized-variable warnings reported by gcc 4.x.Tom Lane2005-09-24
* Fix up LIMIT/OFFSET planning so that we cope with non-constant LIMITTom Lane2005-08-18
* Fix a bunch of bad interactions between partial indexes and the newTom Lane2005-07-28
* Simple constraint exclusion. For now, only child tables of inheritanceTom Lane2005-07-23
* Fix create_unique_plan() so it doesn't generate useless entries in theTom Lane2005-07-15
* Teach planner about some cases where a restriction clause can beTom Lane2005-07-02
* Separate predicate-testing code out of indxpath.c, making it a moduleTom Lane2005-06-10
* Remove planner's private fields from Query struct, and put them intoTom Lane2005-06-05
* Add support for FUNCTION RTEs to build_physical_tlist(), so that theTom Lane2005-05-30
* Teach the planner to remove SubqueryScan nodes from the plan if theyTom Lane2005-05-22
* Avoid rechecking lossy operators twice in a bitmap scan plan.Tom Lane2005-04-25
* While determining the filter clauses for an index scan (either plainTom Lane2005-04-25
* Replace slightly klugy create_bitmap_restriction() function with aTom Lane2005-04-25
* Remove support for OR'd indexscans internal to a single IndexScan planTom Lane2005-04-25
* Fix bogus EXPLAIN display of rowcount estimates for BitmapAnd andTom Lane2005-04-23
* First cut at planner support for bitmap index scans. Lots to do yet,Tom Lane2005-04-22
* Rethink original decision to use AND/OR Expr nodes to represent bitmapTom Lane2005-04-21