| Commit message (Expand) | Author | Age | Files | Lines |
| * | Rename SortMem and VacuumMem to work_mem and maintenance_work_mem. | Tom Lane | 2004-02-03 | 1 | -3/+3 |
| * | Fix another place that wasn't maintaining AND/OR flatness of an | Tom Lane | 2004-01-12 | 1 | -6/+51 |
| * | $Header: -> $PostgreSQL Changes ... | PostgreSQL Daemon | 2003-11-29 | 1 | -1/+1 |
| * | Repair subselect.c's occasional assignment of the wrong vartypmod to | Tom Lane | 2003-11-25 | 1 | -2/+8 |
| * | Get rid of hashkeys field of Hash plan node, since it's redundant with | Tom Lane | 2003-11-25 | 1 | -5/+1 |
| * | Repair interaction between IN-join processing and subselect pullup that | Tom Lane | 2003-10-18 | 1 | -6/+9 |
| * | Another pgindent run with updated typedefs. | Bruce Momjian | 2003-08-08 | 1 | -8/+8 |
| * | Update copyrights to 2003. | Bruce Momjian | 2003-08-04 | 1 | -2/+2 |
| * | pgindent run. | Bruce Momjian | 2003-08-04 | 1 | -80/+93 |
| * | Error message editing in backend/optimizer, backend/rewrite. | Tom Lane | 2003-07-25 | 1 | -5/+5 |
| * | Back out array mega-patch. | Bruce Momjian | 2003-06-25 | 1 | -49/+14 |
| * | Array mega-patch. | Bruce Momjian | 2003-06-24 | 1 | -14/+49 |
| * | Implement outer-level aggregates to conform to the SQL spec, with | Tom Lane | 2003-06-06 | 1 | -71/+144 |
| * | Infrastructure for deducing Param types from context, in the same way | Tom Lane | 2003-04-29 | 1 | -3/+6 |
| * | First phase of work on array improvements. ARRAY[x,y,z] constructor | Tom Lane | 2003-04-08 | 1 | -17/+28 |
| * | Restructure parsetree representation of DECLARE CURSOR: now it's a | Tom Lane | 2003-03-10 | 1 | -25/+3 |
| * | Create a distinction between Lists of integers and Lists of OIDs, to get | Tom Lane | 2003-02-09 | 1 | -3/+3 |
| * | Make further use of new bitmapset code: executor's chgParam, extParam, | Tom Lane | 2003-02-09 | 1 | -82/+140 |
| * | Replace planner's representation of relation sets, per pghackers discussion. | Tom Lane | 2003-02-08 | 1 | -4/+4 |
| * | Extend join-selectivity API (oprjoin interface) so that join type is | Tom Lane | 2003-01-28 | 1 | -2/+2 |
| * | IN clauses appearing at top level of WHERE can now be handled as joins. | Tom Lane | 2003-01-20 | 1 | -15/+132 |
| * | Adjust API of expression_tree_mutator and query_tree_mutator to | Tom Lane | 2003-01-17 | 1 | -5/+5 |
| * | Reconsider mechanism for marking sub-selects that are at top level of | Tom Lane | 2003-01-13 | 1 | -12/+30 |
| * | Cause planner to account for evaluation costs in targetlists and | Tom Lane | 2003-01-13 | 1 | -1/+3 |
| * | First cut at implementing IN (and NOT IN) via hashtables. There is | Tom Lane | 2003-01-12 | 1 | -9/+17 |
| * | Further tweaking of parsetree & plantree representation of SubLinks. | Tom Lane | 2003-01-10 | 1 | -60/+143 |
| * | Adjust parser so that 'x NOT IN (subselect)' is converted to | Tom Lane | 2003-01-09 | 1 | -3/+3 |
| * | Clean up plantree representation of SubPlan-s --- SubLink does not appear | Tom Lane | 2002-12-14 | 1 | -106/+121 |
| * | Phase 2 of read-only-plans project: restructure expression-tree nodes | Tom Lane | 2002-12-12 | 1 | -24/+20 |
| * | Phase 1 of read-only-plans project: cause executor state nodes to point | Tom Lane | 2002-12-05 | 1 | -24/+12 |
| * | Be more realistic about plans involving Materialize nodes: take their | Tom Lane | 2002-11-30 | 1 | -2/+10 |
| * | Upgrade planner and executor to allow multiple hash keys for a hash join, | Tom Lane | 2002-11-30 | 1 | -2/+2 |
| * | Use Params, rather than run-time-modified Const nodes, to handle | Tom Lane | 2002-11-26 | 1 | -125/+115 |
| * | pgindent run. | Bruce Momjian | 2002-09-04 | 1 | -4/+4 |
| * | Update copyright to 2002. | Bruce Momjian | 2002-06-20 | 1 | -2/+2 |
| * | Teach query_tree_walker, query_tree_mutator, and SS_finalize_plan to | Tom Lane | 2002-05-18 | 1 | -22/+36 |
| * | First pass at set-returning-functions in FROM, by Joe Conway with | Tom Lane | 2002-05-12 | 1 | -4/+5 |
| * | Operators live in namespaces. CREATE/DROP/COMMENT ON OPERATOR take | Tom Lane | 2002-04-16 | 1 | -5/+5 |
| * | Repair failure to mark an inserted Materialize node with the appropriate | Tom Lane | 2001-11-30 | 1 | -3/+14 |
| * | pgindent run. Make it all clean. | Bruce Momjian | 2001-03-22 | 1 | -22/+24 |
| * | Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group. | Bruce Momjian | 2001-01-24 | 1 | -2/+2 |
| * | Fix oversight in planning of GROUP queries: when an expression is used | Tom Lane | 2001-01-09 | 1 | -2/+3 |
| * | Fix erroneous handling of parameters at SubqueryScan plan nodes, | Tom Lane | 2000-11-21 | 1 | -2/+9 |
| * | Change SearchSysCache coding conventions so that a reference count is | Tom Lane | 2000-11-16 | 1 | -11/+17 |
| * | Re-implement LIMIT/OFFSET as a plan node type, instead of a hack in | Tom Lane | 2000-10-26 | 1 | -1/+2 |
| * | Reimplementation of UNION/INTERSECT/EXCEPT. INTERSECT/EXCEPT now meet the | Tom Lane | 2000-10-05 | 1 | -38/+25 |
| * | Subselects in FROM clause, per ISO syntax: FROM (SELECT ...) [AS] alias. | Tom Lane | 2000-09-29 | 1 | -14/+2 |
| * | First cut at full support for OUTER JOINs. There are still a few loose | Tom Lane | 2000-09-12 | 1 | -2/+10 |
| * | Copy sub-Query nodes to avoid trouble when same sub-Query is linked to | Tom Lane | 2000-08-06 | 1 | -4/+15 |
| * | First stage of reclaiming memory in executor by resetting short-term | Tom Lane | 2000-07-12 | 1 | -2/+2 |