| Commit message (Expand) | Author | Age | Files | Lines |
| * | copyObject() and equal() now know about all parse-time node types, | Tom Lane | 2000-08-11 | 1 | -52/+1281 |
| * | Remove 'func_tlist' from Func expression nodes, likewise 'param_tlist' | Tom Lane | 2000-08-08 | 1 | -13/+20 |
| * | Remove 'Array' node type, which has evidently been dead code for | Tom Lane | 2000-07-22 | 1 | -23/+1 |
| * | Revise aggregate functions per earlier discussions in pghackers. | Tom Lane | 2000-07-17 | 1 | -3/+1 |
| * | First stage of reclaiming memory in executor by resetting short-term | Tom Lane | 2000-07-12 | 1 | -3/+3 |
| * | Add test code to copy all parse/plan trees. Repair essential omissions | Tom Lane | 2000-06-29 | 1 | -96/+71 |
| * | Ye-old pgindent run. Same 4-space tabs. | Bruce Momjian | 2000-04-12 | 1 | -20/+35 |
| * | Repair logic flaw in cost estimator: cost_nestloop() was estimating CPU | Tom Lane | 2000-03-22 | 1 | -1/+4 |
| * | equalAttr() had its strcmp test backwards :-( | Tom Lane | 2000-03-01 | 1 | -2/+2 |
| * | Change parse-time representation of float literals (which include oversize | Tom Lane | 2000-02-21 | 1 | -5/+4 |
| * | Create a new expression node type RelabelType, which exists solely to | Tom Lane | 2000-02-20 | 1 | -1/+16 |
| * | New cost model for planning, incorporating a penalty for random page | Tom Lane | 2000-02-15 | 1 | -20/+15 |
| * | Carry column aliases from the parser frontend. Enables queries like | Thomas G. Lockhart | 2000-02-15 | 1 | -4/+18 |
| * | Repair planning bugs caused by my misguided removal of restrictinfo link | Tom Lane | 2000-02-07 | 1 | -1/+3 |
| * | Hmm, equalfuncs didn't know about SortClause or GroupClause | Tom Lane | 2000-01-31 | 1 | -1/+19 |
| * | Redesign DISTINCT ON as discussed in pgsql-sql 1/25/00: syntax is now | Tom Lane | 2000-01-27 | 1 | -11/+3 |
| * | Add: | Bruce Momjian | 2000-01-26 | 1 | -2/+3 |
| * | Another round of planner/optimizer work. This is just restructuring and | Tom Lane | 2000-01-09 | 1 | -4/+15 |
| * | Clean up handling of explicit NULL constants. Cases like | Tom Lane | 1999-12-24 | 1 | -1/+8 |
| * | aggregate(DISTINCT ...) works, per SQL spec. | Tom Lane | 1999-12-13 | 1 | -1/+5 |
| * | Tid access method feature from Hiroshi Inoue, Inoue@tpf.co.jp | Bruce Momjian | 1999-11-23 | 1 | -1/+41 |
| * | Clean up possible memory leakage in nodeSubplan | Tom Lane | 1999-11-15 | 1 | -1/+5 |
| * | Fix planner and rewriter to follow SQL semantics for tables that are | Tom Lane | 1999-10-07 | 1 | -1/+3 |
| * | Implement constant-expression simplification per Bernard | Tom Lane | 1999-09-26 | 1 | -2/+21 |
| * | Major revision of sort-node handling: push knowledge of query | Tom Lane | 1999-08-21 | 1 | -17/+25 |
| * | Major planner/optimizer revision: get rid of PathOrder node type, | Tom Lane | 1999-08-16 | 1 | -108/+35 |
| * | > > Prevent sorting if result is already sorted | Bruce Momjian | 1999-08-09 | 1 | -1/+4 |
| * | Add equal() funcs for Case nodes ... amazing we had not | Tom Lane | 1999-07-29 | 1 | -178/+164 |
| * | Clean up messy clause-selectivity code in clausesel.c; repair bug | Tom Lane | 1999-07-24 | 1 | -3/+1 |
| * | Move some system includes into c.h, and remove duplicates. | Bruce Momjian | 1999-07-17 | 1 | -2/+1 |
| * | Final cleanup. | Bruce Momjian | 1999-07-16 | 1 | -3/+2 |
| * | Remove unused #includes in *.c files. | Bruce Momjian | 1999-07-15 | 1 | -6/+1 |
| * | Clean up #include in /include directory. Add scripts for checking includes. | Bruce Momjian | 1999-07-15 | 1 | -2/+1 |
| * | equal() needs a case for Aggref nodes, as shown by: | Tom Lane | 1999-06-06 | 1 | -1/+25 |
| * | Another pgindent run. Sorry folks. | Bruce Momjian | 1999-05-25 | 1 | -6/+6 |
| * | pgindent run over code. | Bruce Momjian | 1999-05-25 | 1 | -18/+30 |
| * | Replaced targetlist entry in GroupClause by reference number | Jan Wieck | 1999-05-12 | 1 | -1/+3 |
| * | Fix bushy plans. Cleanup. | Bruce Momjian | 1999-02-18 | 1 | -2/+2 |
| * | otherrels is now unjoined_rels | Bruce Momjian | 1999-02-15 | 1 | -2/+2 |
| * | Remove duplicate geqo functions, and more optimizer cleanup | Bruce Momjian | 1999-02-15 | 1 | -2/+2 |
| * | Change my-function-name-- to my_function_name, and optimizer renames. | Bruce Momjian | 1999-02-13 | 1 | -5/+5 |
| * | JoinPath -> NestPath for nested loop. | Bruce Momjian | 1999-02-12 | 1 | -6/+6 |
| * | More optimizer speedups. | Bruce Momjian | 1999-02-11 | 1 | -11/+11 |
| * | Optmizer cleanup | Bruce Momjian | 1999-02-10 | 1 | -2/+2 |
| * | Rename Path.keys to Path.pathkeys. Too many 'keys' used for other things. | Bruce Momjian | 1999-02-10 | 1 | -2/+2 |
| * | Major optimizer improvement for joining a large number of tables. | Bruce Momjian | 1999-02-09 | 1 | -13/+13 |
| * | Optimizer cleanup. | Bruce Momjian | 1999-02-08 | 1 | -11/+11 |
| * | Add equality checking for T_Query so that we don't get | Tom Lane | 1999-02-07 | 1 | -9/+111 |
| * | Optimizer cleanup. | Bruce Momjian | 1999-02-06 | 1 | -2/+1 |
| * | More optimizer renaming HInfo -> HashInfo. | Bruce Momjian | 1999-02-04 | 1 | -6/+6 |