summaryrefslogtreecommitdiff
path: root/src/include/optimizer
Commit message (Expand)AuthorAgeFilesLines
* Create hooks to let a loadable plugin monitor (or even replace) the plannerTom Lane2007-05-252-2/+18
* Fix best_inner_indexscan to return both the cheapest-total-cost andTom Lane2007-05-221-3/+4
* Teach tuplestore.c to throw away data before the "mark" point when the callerTom Lane2007-05-211-1/+2
* Teach tuplesort.c about "top N" sorting, in which only the first N tuplesTom Lane2007-05-042-5/+6
* Expose more cursor-related functionality in SPI: specifically, allowTom Lane2007-04-161-2/+2
* Avoid running build_index_pathkeys() in situations where there cannotTom Lane2007-04-151-1/+2
* Turn the rangetable used by the executor into a flat list, and avoid storingTom Lane2007-02-222-7/+10
* Remove the Query structure from the executor's API. This allows us to stopTom Lane2007-02-201-3/+3
* Get rid of some old and crufty global variables in the planner. WhenTom Lane2007-02-193-19/+11
* Restructure code that is responsible for ensuring that clauseless joins areTom Lane2007-02-161-1/+3
* Add COST and ROWS options to CREATE/ALTER FUNCTION, plus underlying pg_procTom Lane2007-01-223-3/+6
* Refactor planner's pathkeys data structure to create a separate, explicitTom Lane2007-01-205-30/+69
* Change the planner-to-executor API so that the planner tells the executorTom Lane2007-01-102-6/+7
* Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian2007-01-0523-46/+46
* Restructure operator classes to allow improved handling of cross-data-typeTom Lane2006-12-231-1/+3
* Fix planner to do the right thing when a degenerate outer join (one whoseTom Lane2006-12-121-2/+3
* pgindent run for 8.2.Bruce Momjian2006-10-045-15/+15
* Increase default value of effective_cache_size to 128MB, per discussion.Tom Lane2006-09-251-2/+2
* Improve usage of effective_cache_size parameter by assuming that all theTom Lane2006-09-192-4/+5
* Add INSERT/UPDATE/DELETE RETURNING, with basic docs and regression tests.Tom Lane2006-08-121-1/+4
* Add support for multi-row VALUES clauses as part of INSERT statementsJoe Conway2006-08-022-2/+6
* Change the relation_open protocol so that we obtain lock on a relationTom Lane2006-07-311-2/+2
* Convert effective_cache_size to an integer, for better integration withPeter Eisentraut2006-07-261-3/+3
* Change LIMIT/OFFSET to use int8Bruce Momjian2006-07-261-2/+2
* In the recent changes to make the planner account better for cacheTom Lane2006-07-222-4/+4
* Fix some missing inclusions identified with new pgcheckdefines tool.Tom Lane2006-07-151-1/+2
* Allow include files to compile own their own.Bruce Momjian2006-07-131-3/+1
* Revise the planner's handling of "pseudoconstant" WHERE clauses, that isTom Lane2006-07-014-10/+11
* Make the planner estimate costs for nestloop inner indexscans on the basisTom Lane2006-06-063-10/+11
* Increase the default value of cpu_index_tuple_cost from 0.001 to 0.005.Tom Lane2006-06-051-2/+2
* Add a GUC parameter seq_page_cost, and use that everywhere we formerlyTom Lane2006-06-051-6/+9
* Update copyright for 2006. Update scripts.Bruce Momjian2006-03-0523-46/+46
* Improve my initial, rather hacky implementation of joins to appendTom Lane2006-02-051-8/+1
* Fix constraint exclusion to work in inherited UPDATE/DELETE queriesTom Lane2006-02-041-2/+3
* Teach planner to convert simple UNION ALL subqueries into append relations,Tom Lane2006-02-033-9/+13
* Update random() usage so ranges are inclusive/exclusive as required.Bruce Momjian2006-02-031-2/+2
* Restructure planner's handling of inheritance. Rather than processingTom Lane2006-01-312-8/+16
* Fix code that checks to see if an index can be considered to match the query'sTom Lane2006-01-291-2/+2
* Allow row comparisons to be used as indexscan qualifications.Tom Lane2006-01-251-2/+4
* Teach planner how to rearrange join order for some classes of OUTER JOIN.Tom Lane2005-12-204-15/+11
* Teach tid-scan code to make use of "ctid = ANY (array)" clauses, so thatTom Lane2005-11-262-4/+4
* Teach planner and executor to handle ScalarArrayOpExpr as an indexableTom Lane2005-11-251-1/+10
* Restore the former RestrictInfo field valid_everywhere (but invert the flagTom Lane2005-11-141-1/+2
* Standard pgindent run for 8.1.Bruce Momjian2005-10-1511-49/+48
* Repair planning bug introduced in 7.4: outer-join ON clauses that referencedTom Lane2005-09-281-2/+3
* Change the division of labor between grouping_planner and query_plannerTom Lane2005-08-272-6/+4
* enable_constraint_exclusion => constraint_exclusionBruce Momjian2005-08-221-2/+2
* Fix up LIMIT/OFFSET planning so that we cope with non-constant LIMITTom Lane2005-08-181-2/+3
* Fix a bunch of bad interactions between partial indexes and the newTom Lane2005-07-282-4/+6
* Simple constraint exclusion. For now, only child tables of inheritanceTom Lane2005-07-233-3/+8