| Commit message (Expand) | Author | Age | Files | Lines |
| * | Arrange to "inline" SQL functions that appear in a query's FROM clause, | Tom Lane | 2008-03-18 | 1 | -1/+54 |
| * | Refactor backend makefiles to remove lots of duplicate code | Peter Eisentraut | 2008-02-19 | 1 | -8/+2 |
| * | Update copyrights in source tree to 2008. | Bruce Momjian | 2008-01-01 | 4 | -8/+8 |
| * | pgindent run for 8.3. | Bruce Momjian | 2007-11-15 | 1 | -8/+8 |
| * | Remove an Assert that's been obsoleted by recent changes in the parsetree | Tom Lane | 2007-10-22 | 1 | -2/+1 |
| * | Fix mistaken Assert in adjust_appendrel_attr_needed, per Greg Stark. | Tom Lane | 2007-07-12 | 1 | -3/+2 |
| * | Support UPDATE/DELETE WHERE CURRENT OF cursor_name, per SQL standard. | Tom Lane | 2007-06-11 | 1 | -1/+9 |
| * | Modify processing of DECLARE CURSOR and EXPLAIN so that they can resolve the | Tom Lane | 2007-04-27 | 1 | -3/+5 |
| * | Tweak make_inh_translation_lists() to check the common case wherein parent and | Tom Lane | 2007-04-21 | 1 | -20/+31 |
| * | Fix up the remaining places where the expression node structure would lose | Tom Lane | 2007-03-17 | 2 | -2/+6 |
| * | Turn the rangetable used by the executor into a flat list, and avoid storing | Tom Lane | 2007-02-22 | 1 | -27/+8 |
| * | Get rid of some old and crufty global variables in the planner. When | Tom Lane | 2007-02-19 | 3 | -5/+11 |
| * | Put back planner's ability to cache the results of mergejoinscansel(), | Tom Lane | 2007-01-22 | 1 | -1/+4 |
| * | Refactor planner's pathkeys data structure to create a separate, explicit | Tom Lane | 2007-01-20 | 2 | -6/+5 |
| * | Remove remains of old depend target. | Peter Eisentraut | 2007-01-20 | 1 | -9/+1 |
| * | Update CVS HEAD for 2007 copyright. Back branches are typically not | Bruce Momjian | 2007-01-05 | 4 | -8/+8 |
| * | pgindent run for 8.2. | Bruce Momjian | 2006-10-04 | 4 | -139/+137 |
| * | Suppress subquery pullup/pushdown when a subquery contains volatile | Tom Lane | 2006-08-19 | 1 | -1/+10 |
| * | Tweak SPI_cursor_open to allow INSERT/UPDATE/DELETE RETURNING; this was | Tom Lane | 2006-08-12 | 1 | -3/+1 |
| * | Add INSERT/UPDATE/DELETE RETURNING, with basic docs and regression tests. | Tom Lane | 2006-08-12 | 2 | -2/+43 |
| * | Fix UNION/INTERSECT/EXCEPT so that when two inputs being merged have | Tom Lane | 2006-08-10 | 2 | -2/+7 |
| * | Remove 576 references of include files that were not needed. | Bruce Momjian | 2006-07-14 | 2 | -4/+2 |
| * | Improve the representation of FOR UPDATE/FOR SHARE so that we can | Tom Lane | 2006-04-30 | 3 | -29/+9 |
| * | Fix a bunch of problems with domains by making them use special input functions | Tom Lane | 2006-04-05 | 1 | -2/+2 |
| * | Remove the stub support we had for UNION JOIN; per discussion, this is | Tom Lane | 2006-03-07 | 1 | -11/+1 |
| * | Update copyright for 2006. Update scripts. | Bruce Momjian | 2006-03-05 | 4 | -8/+8 |
| * | Teach planner to convert simple UNION ALL subqueries into append relations, | Tom Lane | 2006-02-03 | 2 | -320/+639 |
| * | Restructure planner's handling of inheritance. Rather than processing | Tom Lane | 2006-01-31 | 2 | -201/+446 |
| * | Teach planner how to rearrange join order for some classes of OUTER JOIN. | Tom Lane | 2005-12-20 | 1 | -263/+10 |
| * | Teach push_nots() how to negate a ScalarArrayOpExpr. In passing, save | Tom Lane | 2005-11-26 | 1 | -6/+35 |
| * | Re-run pgindent, fixing a problem where comment lines after a blank | Bruce Momjian | 2005-11-22 | 4 | -35/+36 |
| * | Standard pgindent run for 8.1. | Bruce Momjian | 2005-10-15 | 4 | -266/+253 |
| * | Prevent planner from including temp tables of other backends when expanding | Tom Lane | 2005-08-02 | 1 | -1/+23 |
| * | Add NOWAIT option to SELECT FOR UPDATE/SHARE. | Tom Lane | 2005-08-01 | 1 | -9/+17 |
| * | Fix an oversight I introduced on 2003-12-28: find_nots/push_nots should | Tom Lane | 2005-07-29 | 1 | -19/+10 |
| * | Make use of new list primitives list_append_unique and list_concat_unique | Tom Lane | 2005-07-28 | 1 | -14/+16 |
| * | If a LIMIT is applied to a UNION ALL query, plan each UNION arm as | Tom Lane | 2005-06-10 | 1 | -12/+48 |
| * | Simplify the planner's join clause management by storing join clauses | Tom Lane | 2005-06-09 | 1 | -1/+4 |
| * | Remove planner's private fields from Query struct, and put them into | Tom Lane | 2005-06-05 | 3 | -68/+88 |
| * | Change expandRTE() and ResolveNew() back to taking just the single | Tom Lane | 2005-06-04 | 1 | -13/+13 |
| * | Avoid redundant relation lock grabs during planning, and make sure | Tom Lane | 2005-05-23 | 1 | -4/+6 |
| * | Teach the planner to remove SubqueryScan nodes from the plan if they | Tom Lane | 2005-05-22 | 1 | -7/+15 |
| * | Implement sharable row-level locks, and use them for foreign key references | Tom Lane | 2005-04-28 | 2 | -8/+19 |
| * | Merge Resdom nodes into TargetEntry nodes to simplify code and save a | Tom Lane | 2005-04-06 | 3 | -115/+83 |
| * | Rethink the order of expression preprocessing: eval_const_expressions | Tom Lane | 2005-03-28 | 1 | -103/+24 |
| * | This patch moves some code for preprocessing FOR UPDATE from | Neil Conway | 2005-03-17 | 1 | -5/+62 |
| * | Tag appropriate files for rc3 | PostgreSQL Daemon | 2004-12-31 | 4 | -8/+8 |
| * | Instead of supposing (wrongly, in the general case) that the rowtype | Tom Lane | 2004-12-11 | 2 | -48/+29 |
| * | When implementing a coercion to a domain type with a combined | Tom Lane | 2004-11-06 | 1 | -1/+2 |
| * | Clean up handling of inherited-table update queries, per bug report | Tom Lane | 2004-10-02 | 1 | -26/+32 |