| Commit message (Expand) | Author | Age | Files | Lines |
* | Add default expressions to INSERTs during planning, not during parse | Tom Lane | 2001-11-02 | 1 | -75/+154 |
* | Another pgindent run. Fixes enum indenting, and improves #endif | Bruce Momjian | 2001-10-28 | 2 | -2/+3 |
* | pgindent run on all C files. Java run to follow. initdb/regression | Bruce Momjian | 2001-10-25 | 4 | -22/+14 |
* | Fix handling of pg_type.typdefault per bug report from Dave Blasby. | Tom Lane | 2001-09-06 | 1 | -27/+36 |
* | Fix brokenness of nested EXCEPT/INTERSECT queries. prepunion was being | Tom Lane | 2001-08-14 | 1 | -11/+33 |
* | Further work on making use of new statistics in planner. Adjust APIs | Tom Lane | 2001-06-05 | 1 | -4/+5 |
* | Modify optimizer data structures so that IndexOptInfo lists built for | Tom Lane | 2001-05-20 | 1 | -6/+15 |
* | Rewrite of planner statistics-gathering code. ANALYZE is now available as | Tom Lane | 2001-05-07 | 1 | -3/+3 |
* | Quick hack to fix Oliver Elphick's problem with subselects in an | Tom Lane | 2001-03-27 | 1 | -2/+25 |
* | pgindent run. Make it all clean. | Bruce Momjian | 2001-03-22 | 4 | -118/+144 |
* | Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group. | Bruce Momjian | 2001-01-24 | 4 | -7/+7 |
* | Change lcons(x, NIL) to makeList(x) where appropriate. | Bruce Momjian | 2001-01-17 | 1 | -2/+2 |
* | Planner speedup hacking. Avoid saving useless pathkeys, so that path | Tom Lane | 2000-12-14 | 1 | -1/+5 |
* | Cache eval cost of qualification expressions in RestrictInfo nodes to | Tom Lane | 2000-12-12 | 1 | -2/+3 |
* | Change SearchSysCache coding conventions so that a reference count is | Tom Lane | 2000-11-16 | 1 | -9/+2 |
* | Restructure handling of inheritance queries so that they work with outer | Tom Lane | 2000-11-12 | 1 | -308/+165 |
* | Repair some bugs in new union/intersect/except code. | Tom Lane | 2000-11-09 | 1 | -23/+46 |
* | Reimplementation of UNION/INTERSECT/EXCEPT. INTERSECT/EXCEPT now meet the | Tom Lane | 2000-10-05 | 3 | -182/+378 |
* | Subselects in FROM clause, per ISO syntax: FROM (SELECT ...) [AS] alias. | Tom Lane | 2000-09-29 | 2 | -10/+12 |
* | First cut at full support for OUTER JOINs. There are still a few loose | Tom Lane | 2000-09-12 | 2 | -35/+12 |
* | Fix relative path references so that make knowns which dependencies refer | Peter Eisentraut | 2000-08-31 | 1 | -5/+4 |
* | Remove 'func_tlist' from Func expression nodes, likewise 'param_tlist' | Tom Lane | 2000-08-08 | 2 | -10/+3 |
* | Make update lists like 'UPDATE tab SET foo[1] = bar, foo[3] = baz' | Tom Lane | 2000-07-22 | 1 | -49/+101 |
* | Make inheritance planning logic a little simpler and clearer, | Tom Lane | 2000-06-20 | 1 | -79/+106 |
* | Mark functions as static and ifdef NOT_USED as appropriate. | Bruce Momjian | 2000-06-08 | 1 | -2/+4 |
* | Remove unused include files. Do not touch /port or includes used by defines. | Bruce Momjian | 2000-05-30 | 1 | -2/+1 |
* | Generated header files parse.h and fmgroids.h are now copied into | Tom Lane | 2000-05-29 | 1 | -3/+1 |
* | Repair coredump seen when a view refers to an inheritance group | Tom Lane | 2000-04-18 | 1 | -8/+3 |
* | Repair bug reported by Wickstrom: backend would crash if WHERE clause | Tom Lane | 2000-04-14 | 1 | -9/+42 |
* | Ye-old pgindent run. Same 4-space tabs. | Bruce Momjian | 2000-04-12 | 3 | -249/+302 |
* | Restructure planning code so that preprocessing of targetlist and quals | Tom Lane | 2000-03-21 | 1 | -3/+10 |
* | Implement column aliases on views "CREATE VIEW name (collist)". | Thomas G. Lockhart | 2000-03-14 | 1 | -3/+3 |
* | Trial implementation of ALTER DROP COLUMN. | Hiroshi Inoue | 2000-03-09 | 1 | -3/+34 |
* | Avoid a little bit of unnecessary computation in canonicalize_qual. | Tom Lane | 2000-02-27 | 1 | -2/+3 |
* | New cost model for planning, incorporating a penalty for random page | Tom Lane | 2000-02-15 | 1 | -11/+38 |
* | Carry column aliases from the parser frontend. Enables queries like | Thomas G. Lockhart | 2000-02-15 | 1 | -4/+4 |
* | Make EXPLAIN results for Append, Group, Agg, Unique nodes more plausible. | Tom Lane | 2000-02-03 | 1 | -13/+22 |
* | Apply the heuristic proposed by Taral (see pgsql-general archives for | Tom Lane | 2000-01-28 | 1 | -53/+106 |
* | Redesign DISTINCT ON as discussed in pgsql-sql 1/25/00: syntax is now | Tom Lane | 2000-01-27 | 2 | -13/+23 |
* | Add: | Bruce Momjian | 2000-01-26 | 4 | -7/+11 |
* | fix_parsetree_attnums was not nearly smart enough about walking parse | Tom Lane | 1999-12-14 | 1 | -128/+149 |
* | New LDOUT makefile variable for QNX os. | Bruce Momjian | 1999-12-13 | 1 | -2/+2 |
* | Make LD -r as macros that can be changed for QNX. | Bruce Momjian | 1999-12-09 | 1 | -2/+2 |
* | New NameStr macro to convert Name to Str. No need for var.data anymore. | Bruce Momjian | 1999-11-07 | 1 | -2/+2 |
* | Rewrite preprocess_targetlist() to reduce overhead for simple INSERTs. | Tom Lane | 1999-10-30 | 1 | -238/+160 |
* | First cut at doing something reasonable with OR-of-ANDs WHERE | Tom Lane | 1999-09-13 | 1 | -10/+220 |
* | Further improvements in cnfify: reduce amount of self-recursion | Tom Lane | 1999-09-12 | 1 | -332/+381 |
* | Performance improvements in cnfify(): get rid of exponential | Tom Lane | 1999-09-07 | 1 | -249/+236 |
* | Further planner/optimizer cleanups. Move all set_tlist_references | Tom Lane | 1999-08-22 | 1 | -6/+4 |
* | Major revision of sort-node handling: push knowledge of query | Tom Lane | 1999-08-21 | 2 | -29/+33 |