| Commit message (Expand) | Author | Age | Files | Lines |
| * | Create hooks to let a loadable plugin monitor (or even replace) the planner | Tom Lane | 2007-05-25 | 2 | -2/+18 |
| * | Fix best_inner_indexscan to return both the cheapest-total-cost and | Tom Lane | 2007-05-22 | 1 | -3/+4 |
| * | Teach tuplestore.c to throw away data before the "mark" point when the caller | Tom Lane | 2007-05-21 | 1 | -1/+2 |
| * | Teach tuplesort.c about "top N" sorting, in which only the first N tuples | Tom Lane | 2007-05-04 | 2 | -5/+6 |
| * | Expose more cursor-related functionality in SPI: specifically, allow | Tom Lane | 2007-04-16 | 1 | -2/+2 |
| * | Avoid running build_index_pathkeys() in situations where there cannot | Tom Lane | 2007-04-15 | 1 | -1/+2 |
| * | Turn the rangetable used by the executor into a flat list, and avoid storing | Tom Lane | 2007-02-22 | 2 | -7/+10 |
| * | Remove the Query structure from the executor's API. This allows us to stop | Tom Lane | 2007-02-20 | 1 | -3/+3 |
| * | Get rid of some old and crufty global variables in the planner. When | Tom Lane | 2007-02-19 | 3 | -19/+11 |
| * | Restructure code that is responsible for ensuring that clauseless joins are | Tom Lane | 2007-02-16 | 1 | -1/+3 |
| * | Add COST and ROWS options to CREATE/ALTER FUNCTION, plus underlying pg_proc | Tom Lane | 2007-01-22 | 3 | -3/+6 |
| * | Refactor planner's pathkeys data structure to create a separate, explicit | Tom Lane | 2007-01-20 | 5 | -30/+69 |
| * | Change the planner-to-executor API so that the planner tells the executor | Tom Lane | 2007-01-10 | 2 | -6/+7 |
| * | Update CVS HEAD for 2007 copyright. Back branches are typically not | Bruce Momjian | 2007-01-05 | 23 | -46/+46 |
| * | Restructure operator classes to allow improved handling of cross-data-type | Tom Lane | 2006-12-23 | 1 | -1/+3 |
| * | Fix planner to do the right thing when a degenerate outer join (one whose | Tom Lane | 2006-12-12 | 1 | -2/+3 |
| * | pgindent run for 8.2. | Bruce Momjian | 2006-10-04 | 5 | -15/+15 |
| * | Increase default value of effective_cache_size to 128MB, per discussion. | Tom Lane | 2006-09-25 | 1 | -2/+2 |
| * | Improve usage of effective_cache_size parameter by assuming that all the | Tom Lane | 2006-09-19 | 2 | -4/+5 |
| * | Add INSERT/UPDATE/DELETE RETURNING, with basic docs and regression tests. | Tom Lane | 2006-08-12 | 1 | -1/+4 |
| * | Add support for multi-row VALUES clauses as part of INSERT statements | Joe Conway | 2006-08-02 | 2 | -2/+6 |
| * | Change the relation_open protocol so that we obtain lock on a relation | Tom Lane | 2006-07-31 | 1 | -2/+2 |
| * | Convert effective_cache_size to an integer, for better integration with | Peter Eisentraut | 2006-07-26 | 1 | -3/+3 |
| * | Change LIMIT/OFFSET to use int8 | Bruce Momjian | 2006-07-26 | 1 | -2/+2 |
| * | In the recent changes to make the planner account better for cache | Tom Lane | 2006-07-22 | 2 | -4/+4 |
| * | Fix some missing inclusions identified with new pgcheckdefines tool. | Tom Lane | 2006-07-15 | 1 | -1/+2 |
| * | Allow include files to compile own their own. | Bruce Momjian | 2006-07-13 | 1 | -3/+1 |
| * | Revise the planner's handling of "pseudoconstant" WHERE clauses, that is | Tom Lane | 2006-07-01 | 4 | -10/+11 |
| * | Make the planner estimate costs for nestloop inner indexscans on the basis | Tom Lane | 2006-06-06 | 3 | -10/+11 |
| * | Increase the default value of cpu_index_tuple_cost from 0.001 to 0.005. | Tom Lane | 2006-06-05 | 1 | -2/+2 |
| * | Add a GUC parameter seq_page_cost, and use that everywhere we formerly | Tom Lane | 2006-06-05 | 1 | -6/+9 |
| * | Update copyright for 2006. Update scripts. | Bruce Momjian | 2006-03-05 | 23 | -46/+46 |
| * | Improve my initial, rather hacky implementation of joins to append | Tom Lane | 2006-02-05 | 1 | -8/+1 |
| * | Fix constraint exclusion to work in inherited UPDATE/DELETE queries | Tom Lane | 2006-02-04 | 1 | -2/+3 |
| * | Teach planner to convert simple UNION ALL subqueries into append relations, | Tom Lane | 2006-02-03 | 3 | -9/+13 |
| * | Update random() usage so ranges are inclusive/exclusive as required. | Bruce Momjian | 2006-02-03 | 1 | -2/+2 |
| * | Restructure planner's handling of inheritance. Rather than processing | Tom Lane | 2006-01-31 | 2 | -8/+16 |
| * | Fix code that checks to see if an index can be considered to match the query's | Tom Lane | 2006-01-29 | 1 | -2/+2 |
| * | Allow row comparisons to be used as indexscan qualifications. | Tom Lane | 2006-01-25 | 1 | -2/+4 |
| * | Teach planner how to rearrange join order for some classes of OUTER JOIN. | Tom Lane | 2005-12-20 | 4 | -15/+11 |
| * | Teach tid-scan code to make use of "ctid = ANY (array)" clauses, so that | Tom Lane | 2005-11-26 | 2 | -4/+4 |
| * | Teach planner and executor to handle ScalarArrayOpExpr as an indexable | Tom Lane | 2005-11-25 | 1 | -1/+10 |
| * | Restore the former RestrictInfo field valid_everywhere (but invert the flag | Tom Lane | 2005-11-14 | 1 | -1/+2 |
| * | Standard pgindent run for 8.1. | Bruce Momjian | 2005-10-15 | 11 | -49/+48 |
| * | Repair planning bug introduced in 7.4: outer-join ON clauses that referenced | Tom Lane | 2005-09-28 | 1 | -2/+3 |
| * | Change the division of labor between grouping_planner and query_planner | Tom Lane | 2005-08-27 | 2 | -6/+4 |
| * | enable_constraint_exclusion => constraint_exclusion | Bruce Momjian | 2005-08-22 | 1 | -2/+2 |
| * | Fix up LIMIT/OFFSET planning so that we cope with non-constant LIMIT | Tom Lane | 2005-08-18 | 1 | -2/+3 |
| * | Fix a bunch of bad interactions between partial indexes and the new | Tom Lane | 2005-07-28 | 2 | -4/+6 |
| * | Simple constraint exclusion. For now, only child tables of inheritance | Tom Lane | 2005-07-23 | 3 | -3/+8 |