| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix estimate_num_groups to be able to use expression-index statistics | Tom Lane | 2004-09-18 | 1 | -72/+112 |
| * | Another pgindent run with lib typedefs added. | Bruce Momjian | 2004-08-30 | 1 | -3/+3 |
| * | Pgindent run for 8.0. | Bruce Momjian | 2004-08-29 | 1 | -149/+145 |
| * | Update copyright to 2004. | Bruce Momjian | 2004-08-29 | 1 | -2/+2 |
| * | Label CVS tip as 8.0devel instead of 7.5devel. Adjust various comments | Tom Lane | 2004-08-04 | 1 | -2/+2 |
| * | When using extended-query protocol, postpone planning of unnamed statements | Tom Lane | 2004-06-11 | 1 | -4/+5 |
| * | Use the new List API function names throughout the backend, and disable the | Neil Conway | 2004-05-30 | 1 | -16/+16 |
| * | Reimplement the linked list data structure used throughout the backend. | Neil Conway | 2004-05-26 | 1 | -15/+15 |
| * | genericcostestimate() neglected to include qual startup cost in | Tom Lane | 2004-02-27 | 1 | -1/+2 |
| * | Make use of statistics on index expressions. There are still some | Tom Lane | 2004-02-17 | 1 | -793/+1051 |
| * | Avoid generating invalid character encoding sequences in make_greater_string. | Tom Lane | 2004-02-02 | 1 | -2/+14 |
| * | Repair misestimation of indexscan CPU costs. When an indexqual contains | Tom Lane | 2004-01-17 | 1 | -9/+26 |
| * | More janitorial work: remove the explicit casting of NULL literals to a | Neil Conway | 2004-01-07 | 1 | -2/+2 |
| * | Adjust indexscan planning logic to keep RestrictInfo nodes associated | Tom Lane | 2004-01-05 | 1 | -6/+22 |
| * | Using canonicalize_qual() to get rid of duplicate index predicate | Tom Lane | 2003-12-29 | 1 | -15/+14 |
| * | Clean up the usage of canonicalize_qual(): in particular, be consistent | Tom Lane | 2003-12-28 | 1 | -4/+5 |
| * | Repair indexed bytea like operations, and related selectivity | Joe Conway | 2003-12-07 | 1 | -24/+87 |
| * | $Header: -> $PostgreSQL Changes ... | PostgreSQL Daemon | 2003-11-29 | 1 | -1/+1 |
| * | Cross-data-type comparisons are now indexable by btrees, pursuant to my | Tom Lane | 2003-11-12 | 1 | -4/+7 |
| * | Avoid division by zero in estimate_num_groups() when table has no rows. | Tom Lane | 2003-10-16 | 1 | -9/+15 |
| * | Message editing: remove gratuitous variations in message wording, standardize | Peter Eisentraut | 2003-09-25 | 1 | -3/+3 |
| * | Another pgindent run with updated typedefs. | Bruce Momjian | 2003-08-08 | 1 | -2/+2 |
| * | Update copyrights to 2003. | Bruce Momjian | 2003-08-04 | 1 | -2/+2 |
| * | pgindent run. | Bruce Momjian | 2003-08-04 | 1 | -77/+83 |
| * | Error message editing in utils/adt. Again thanks to Joe Conway for doing | Tom Lane | 2003-07-27 | 1 | -22/+28 |
| * | Oh, for crying in a bucket ... relax Assert so that glibc's strxfrm | Tom Lane | 2003-07-17 | 1 | -2/+7 |
| * | Work around buggy strxfrm() present in some Solaris releases. | Tom Lane | 2003-07-17 | 1 | -15/+16 |
| * | Replace functional-index facility with expressional indexes. Any column | Tom Lane | 2003-05-28 | 1 | -7/+5 |
| * | Cause CHAR(n) to TEXT or VARCHAR conversion to automatically strip trailing | Tom Lane | 2003-05-26 | 1 | -54/+90 |
| * | Indexing support for pattern matching operations via separate operator | Peter Eisentraut | 2003-05-15 | 1 | -103/+18 |
| * | Fix stupid oversight ... | Tom Lane | 2003-04-16 | 1 | -3/+3 |
| * | eqjoinsel's logic for case where MCV lists are not present should | Tom Lane | 2003-04-15 | 1 | -15/+21 |
| * | Instead of storing pg_statistic stavalues entries as text strings, store | Tom Lane | 2003-03-23 | 1 | -6/+1 |
| * | Tweak selectivity and related routines to cope with domains. Per report | Tom Lane | 2003-03-23 | 1 | -19/+75 |
| * | Replace planner's representation of relation sets, per pghackers discussion. | Tom Lane | 2003-02-08 | 1 | -3/+3 |
| * | Extend join-selectivity API (oprjoin interface) so that join type is | Tom Lane | 2003-01-28 | 1 | -18/+57 |
| * | Upgrade cost estimation for joins, per discussion with Bradley Baetz. | Tom Lane | 2003-01-27 | 1 | -1/+3 |
| * | Modify planner's implied-equality-deduction code so that when a set | Tom Lane | 2003-01-24 | 1 | -2/+2 |
| * | Make estimation of mergejoin scan selectivities more robust, per recent | Tom Lane | 2003-01-22 | 1 | -10/+26 |
| * | IN clauses appearing at top level of WHERE can now be handled as joins. | Tom Lane | 2003-01-20 | 1 | -9/+6 |
| * | Allow merge and hash joins to occur on arbitrary expressions (anything not | Tom Lane | 2003-01-15 | 1 | -17/+4 |
| * | Revise cost_qual_eval() to compute both startup (one-time) and per-tuple | Tom Lane | 2003-01-12 | 1 | -3/+5 |
| * | To suppress memory leakage in long-lived Lists, lremove() should pfree | Tom Lane | 2002-12-17 | 1 | -6/+8 |
| * | Phase 2 of read-only-plans project: restructure expression-tree nodes | Tom Lane | 2002-12-12 | 1 | -9/+10 |
| * | Remove unused constisset and constiscast fields of Const nodes. Clean | Tom Lane | 2002-11-25 | 1 | -2/+2 |
| * | Add an at-least-marginally-plausible method of estimating the number | Tom Lane | 2002-11-19 | 1 | -3/+251 |
| * | This patch removes a bunch of superfluous #include directives: if | Bruce Momjian | 2002-11-08 | 1 | -2/+1 |
| * | Fix range-query estimation to not double-exclude NULLs, per gripe from | Tom Lane | 2002-10-19 | 1 | -29/+29 |
| * | Tom Lane wrote: | Bruce Momjian | 2002-09-20 | 1 | -2/+2 |
| * | pgindent run. | Bruce Momjian | 2002-09-04 | 1 | -27/+31 |