| Commit message (Expand) | Author | Age | Files | Lines |
| * | Tag appropriate files for rc3 | PostgreSQL Daemon | 2004-12-31 | 33 | -66/+66 |
| * | Fix another place broken by new List implementation :-(. Per example | Tom Lane | 2004-12-15 | 1 | -4/+9 |
| * | Instead of supposing (wrongly, in the general case) that the rowtype | Tom Lane | 2004-12-11 | 3 | -52/+54 |
| * | Make some adjustments to reduce platform dependencies in plan selection. | Tom Lane | 2004-12-02 | 2 | -4/+18 |
| * | Change planner to use the current true disk file size as its estimate of | Tom Lane | 2004-12-01 | 2 | -14/+147 |
| * | Allow planner to fold "stable" functions to constants when forming | Tom Lane | 2004-11-09 | 1 | -16/+33 |
| * | Use a hopefully-more-reliable method of detecting default selectivity | Tom Lane | 2004-11-09 | 1 | -30/+45 |
| * | When implementing a coercion to a domain type with a combined | Tom Lane | 2004-11-06 | 1 | -1/+2 |
| * | pred_test() logic was being too narrow-minded about where it might find | Tom Lane | 2004-11-05 | 1 | -8/+12 |
| * | Avoid overflow in cost_sort when work_mem exceeds 1Gb. | Tom Lane | 2004-10-23 | 1 | -2/+2 |
| * | In ALTER COLUMN TYPE, strip any implicit coercion operations appearing | Tom Lane | 2004-10-22 | 1 | -1/+36 |
| * | Fix OR-index-scan planner to recognize that a partial index is usable | Tom Lane | 2004-10-11 | 2 | -73/+99 |
| * | Fix problems with SQL functions returning rowtypes that have dropped | Tom Lane | 2004-10-07 | 1 | -2/+3 |
| * | Adjust comments previously moved to column 1 by pgident. | Bruce Momjian | 2004-10-07 | 1 | -2/+2 |
| * | Clean up handling of inherited-table update queries, per bug report | Tom Lane | 2004-10-02 | 4 | -52/+76 |
| * | Fallout from changing index locking rules: we can reduce the strength | Tom Lane | 2004-10-01 | 1 | -2/+9 |
| * | Fix mistaken comment. | Tom Lane | 2004-09-01 | 1 | -2/+2 |
| * | 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 | 27 | -449/+479 |
| * | Update copyright to 2004. | Bruce Momjian | 2004-08-29 | 33 | -66/+66 |
| * | Repair some issues with column aliases and RowExpr construction in the | Tom Lane | 2004-08-19 | 3 | -26/+41 |
| * | Standardize on the assumption that the arguments of a RowExpr correspond | Tom Lane | 2004-08-17 | 1 | -7/+54 |
| * | Label CVS tip as 8.0devel instead of 7.5devel. Adjust various comments | Tom Lane | 2004-08-04 | 3 | -6/+6 |
| * | Allow DECLARE CURSOR to take parameters from the portal in which it is | Tom Lane | 2004-08-02 | 1 | -30/+12 |
| * | Represent type-specific length coercion functions as pg_cast entries, | Tom Lane | 2004-06-16 | 1 | -2/+3 |
| * | When using extended-query protocol, postpone planning of unnamed statements | Tom Lane | 2004-06-11 | 3 | -42/+159 |
| * | Adjust cost_nonsequential_access() to have more reasonable behavior | Tom Lane | 2004-06-10 | 1 | -8/+9 |
| * | Support assignment to subfields of composite columns in UPDATE and INSERT. | Tom Lane | 2004-06-09 | 1 | -1/+32 |
| * | Tweak palloc/repalloc to allow zero bytes to be requested, as per recent | Tom Lane | 2004-06-05 | 2 | -5/+5 |
| * | Make the world very nearly safe for composite-type columns in tables. | Tom Lane | 2004-06-05 | 6 | -47/+180 |
| * | Adjust our timezone library to use pg_time_t (typedef'd as int64) in | Tom Lane | 2004-06-03 | 1 | -2/+1 |
| * | Just about there on de-FastList-ification. | Tom Lane | 2004-06-01 | 6 | -194/+161 |
| * | Desultory de-FastList-ification. RelOptInfo.reltargetlist is back to | Tom Lane | 2004-06-01 | 7 | -43/+36 |
| * | Use the new List API function names throughout the backend, and disable the | Neil Conway | 2004-05-30 | 26 | -286/+285 |
| * | Use a cleaner substitute for the inability to apply length() to the tail | Tom Lane | 2004-05-26 | 1 | -11/+5 |
| * | Reimplement the linked list data structure used throughout the backend. | Neil Conway | 2004-05-26 | 27 | -561/+575 |
| * | Integrate src/timezone library for all platforms. There is more we can | Tom Lane | 2004-05-21 | 1 | -2/+2 |
| * | Yawn ... still another place not quite ready for zero-column tables. | Tom Lane | 2004-05-11 | 1 | -5/+15 |
| * | Fix oversights in processing of LIMIT expressions during planning. | Tom Lane | 2004-05-11 | 2 | -4/+18 |
| * | Repair recalculation failure for nested sub-SELECTs, per bug report from | Tom Lane | 2004-05-11 | 1 | -1/+4 |
| * | Promote row expressions to full-fledged citizens of the expression syntax, | Tom Lane | 2004-05-10 | 5 | -113/+135 |
| * | Remove the last traces of Joe Hellerstein's "xfunc" optimization. Patch | Neil Conway | 2004-04-25 | 4 | -35/+9 |
| * | Extend set-operation planning to keep track of the sort ordering induced | Tom Lane | 2004-04-07 | 2 | -27/+61 |
| * | build_subquery_pathkeys() was examining wrong copy of subquery target list, | Tom Lane | 2004-04-07 | 1 | -2/+3 |
| * | Support FULL JOIN with no join clauses, such as X FULL JOIN Y ON TRUE. | Tom Lane | 2004-04-06 | 2 | -17/+43 |
| * | check_sql_fn_retval has always thought that we supported doing | Tom Lane | 2004-04-02 | 1 | -3/+3 |
| * | Get rid of crocky use of RangeVar nodes in parser to represent partially | Tom Lane | 2004-04-02 | 1 | -21/+1 |
| * | Use fuzzy comparison of path costs in add_path(), so that paths with the | Tom Lane | 2004-03-29 | 1 | -8/+96 |
| * | Now that we are allowing index opclasses to contain operators that are | Tom Lane | 2004-03-27 | 1 | -6/+20 |
| * | Replace max_expr_depth parameter with a max_stack_depth parameter that | Tom Lane | 2004-03-24 | 1 | -1/+9 |