| Commit message (Expand) | Author | Age | Files | Lines |
* | Preliminary code review for domain CHECK constraints patch: add documentation, | Tom Lane | 2002-12-12 | 1 | -2/+1 |
* | Phase 2 of read-only-plans project: restructure expression-tree nodes | Tom Lane | 2002-12-12 | 3 | -19/+18 |
* | Teach planner to expand sufficiently simple SQL-language functions | Tom Lane | 2002-12-01 | 1 | -1/+2 |
* | Be more realistic about plans involving Materialize nodes: take their | Tom Lane | 2002-11-30 | 2 | -2/+5 |
* | Restructure planning of nestloop inner indexscans so that the set of usable | Tom Lane | 2002-11-24 | 2 | -2/+7 |
* | Finish implementation of hashed aggregation. Add enable_hashagg GUC | Tom Lane | 2002-11-21 | 2 | -7/+21 |
* | Add an at-least-marginally-plausible method of estimating the number | Tom Lane | 2002-11-19 | 1 | -3/+7 |
* | Add DOMAIN check constraints. | Bruce Momjian | 2002-11-15 | 1 | -1/+2 |
* | Phase 2 of hashed-aggregation project. nodeAgg.c now knows how to do | Tom Lane | 2002-11-06 | 1 | -1/+2 |
* | First phase of implementing hash-based grouping/aggregation. An AGG plan | Tom Lane | 2002-11-06 | 3 | -10/+11 |
* | Tweak querytree-dependency-extraction code so that columns of tables | Tom Lane | 2002-09-11 | 1 | -3/+8 |
* | pgindent run. | Bruce Momjian | 2002-09-04 | 3 | -9/+8 |
* | Push down outer qualification clauses into UNION and INTERSECT subqueries. | Tom Lane | 2002-08-29 | 1 | -1/+3 |
* | Remove _deadcode. | Peter Eisentraut | 2002-07-24 | 1 | -83/+0 |
* | Remove unused system table columns: | Peter Eisentraut | 2002-07-24 | 1 | -7/+1 |
* | The attached patch fixes a build problem with GEQO when using the | Bruce Momjian | 2002-07-20 | 2 | -4/+9 |
* | Update copyright to 2002. | Bruce Momjian | 2002-06-20 | 22 | -44/+44 |
* | Remove KSQO from GUC and move file to _deadcode. | Bruce Momjian | 2002-06-16 | 1 | -8/+1 |
* | Teach query_tree_walker, query_tree_mutator, and SS_finalize_plan to | Tom Lane | 2002-05-18 | 1 | -1/+1 |
* | Change set_plan_references and join_references to take an rtable List | Tom Lane | 2002-05-18 | 2 | -6/+6 |
* | Get rid of long-since-vestigial Iter node type, in favor of adding a | Tom Lane | 2002-05-12 | 1 | -2/+2 |
* | First pass at set-returning-functions in FROM, by Joe Conway with | Tom Lane | 2002-05-12 | 2 | -2/+6 |
* | Second try at fixing join alias variables. Instead of attaching miscellaneous | Tom Lane | 2002-04-28 | 2 | -6/+4 |
* | Divide functions into three volatility classes (immutable, stable, and | Tom Lane | 2002-04-05 | 1 | -2/+3 |
* | Restructure representation of join alias variables. An explicit JOIN | Tom Lane | 2002-03-12 | 3 | -9/+16 |
* | Suppress subquery pullup and pushdown when the subquery has any | Tom Lane | 2001-12-10 | 1 | -1/+3 |
* | New pgindent run with fixes suggested by Tom. Patch manually reviewed, | Bruce Momjian | 2001-11-05 | 23 | -45/+45 |
* | Fix problems with subselects used in GROUP BY expressions, per gripe | Tom Lane | 2001-10-30 | 1 | -2/+2 |
* | Another pgindent run. Fixes enum indenting, and improves #endif | Bruce Momjian | 2001-10-28 | 22 | -28/+48 |
* | pgindent run on all C files. Java run to follow. initdb/regression | Bruce Momjian | 2001-10-25 | 23 | -104/+83 |
* | Extend code that deduces implied equality clauses to detect whether a | Tom Lane | 2001-10-18 | 1 | -1/+7 |
* | Restructure pg_opclass, pg_amop, and pg_amproc per previous discussions in | Tom Lane | 2001-08-21 | 1 | -3/+3 |
* | Fix optimizer to not try to push WHERE clauses down into a sub-SELECT that | Tom Lane | 2001-07-31 | 1 | -1/+3 |
* | Improve planning of OR indexscan plans: for quals like | Tom Lane | 2001-06-05 | 1 | -3/+2 |
* | Further work on making use of new statistics in planner. Adjust APIs | Tom Lane | 2001-06-05 | 4 | -45/+60 |
* | Modify optimizer data structures so that IndexOptInfo lists built for | Tom Lane | 2001-05-20 | 5 | -33/+23 |
* | First cut at making indexscan cost estimates depend on correlation | Tom Lane | 2001-05-09 | 1 | -1/+3 |
* | Rewrite of planner statistics-gathering code. ANALYZE is now available as | Tom Lane | 2001-05-07 | 2 | -4/+5 |
* | Make the world safe for passing whole rows of views to functions. This | Tom Lane | 2001-04-18 | 1 | -4/+5 |
* | pgindent run. Make it all clean. | Bruce Momjian | 2001-03-22 | 9 | -77/+81 |
* | Take OUTER JOIN semantics into account when estimating the size of join | Tom Lane | 2001-02-16 | 2 | -5/+8 |
* | Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group. | Bruce Momjian | 2001-01-24 | 22 | -44/+44 |
* | Add all possible config file options. | Bruce Momjian | 2001-01-24 | 3 | -3/+7 |
* | Fix oversight in planning of GROUP queries: when an expression is used | Tom Lane | 2001-01-09 | 1 | -1/+2 |
* | Planner speedup hacking. Avoid saving useless pathkeys, so that path | Tom Lane | 2000-12-14 | 2 | -10/+20 |
* | Restructure handling of inheritance queries so that they work with outer | Tom Lane | 2000-11-12 | 4 | -10/+13 |
* | Re-implement LIMIT/OFFSET as a plan node type, instead of a hack in | Tom Lane | 2000-10-26 | 1 | -1/+3 |
* | Add proofreader's changes to docs. | Bruce Momjian | 2000-10-05 | 2 | -4/+4 |
* | Reimplementation of UNION/INTERSECT/EXCEPT. INTERSECT/EXCEPT now meet the | Tom Lane | 2000-10-05 | 4 | -6/+15 |
* | Subselects in FROM clause, per ISO syntax: FROM (SELECT ...) [AS] alias. | Tom Lane | 2000-09-29 | 5 | -21/+15 |