| Commit message (Expand) | Author | Age | Files | Lines |
| * | Change the division of labor between grouping_planner and query_planner | Tom Lane | 2005-08-27 | 1 | -120/+32 |
| * | Fix up LIMIT/OFFSET planning so that we cope with non-constant LIMIT | Tom Lane | 2005-08-18 | 1 | -61/+147 |
| * | Teach planner about some cases where a restriction clause can be | Tom Lane | 2005-07-02 | 1 | -7/+10 |
| * | If a LIMIT is applied to a UNION ALL query, plan each UNION arm as | Tom Lane | 2005-06-10 | 1 | -104/+127 |
| * | Remove planner's private fields from Query struct, and put them into | Tom Lane | 2005-06-05 | 1 | -107/+134 |
| * | Skip eval_const_expressions when the query is such that the expression | Tom Lane | 2005-05-30 | 1 | -2/+21 |
| * | Teach the planner to remove SubqueryScan nodes from the plan if they | Tom Lane | 2005-05-22 | 1 | -4/+4 |
| * | Implement sharable row-level locks, and use them for foreign key references | Tom Lane | 2005-04-28 | 1 | -3/+3 |
| * | Create the planner mechanism for optimizing simple MIN and MAX queries | Tom Lane | 2005-04-11 | 1 | -185/+175 |
| * | Split out into a separate function the code in grouping_planner() that | Tom Lane | 2005-04-10 | 1 | -140/+156 |
| * | Merge Resdom nodes into TargetEntry nodes to simplify code and save a | Tom Lane | 2005-04-06 | 1 | -15/+12 |
| * | Rethink the order of expression preprocessing: eval_const_expressions | Tom Lane | 2005-03-28 | 1 | -12/+11 |
| * | This patch moves some code for preprocessing FOR UPDATE from | Neil Conway | 2005-03-17 | 1 | -61/+3 |
| * | Make the behavior of HAVING without GROUP BY conform to the SQL spec. | Tom Lane | 2005-03-10 | 1 | -55/+93 |
| * | Improve planner's estimation of the space needed for HashAgg plans: | Tom Lane | 2005-01-28 | 1 | -17/+22 |
| * | Tag appropriate files for rc3 | PostgreSQL Daemon | 2004-12-31 | 1 | -2/+2 |
| * | Clean up handling of inherited-table update queries, per bug report | Tom Lane | 2004-10-02 | 1 | -15/+31 |
| * | 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 | 1 | -25/+26 |
| * | Update copyright to 2004. | Bruce Momjian | 2004-08-29 | 1 | -2/+2 |
| * | When using extended-query protocol, postpone planning of unnamed statements | Tom Lane | 2004-06-11 | 1 | -4/+14 |
| * | Use the new List API function names throughout the backend, and disable the | Neil Conway | 2004-05-30 | 1 | -12/+12 |
| * | Reimplement the linked list data structure used throughout the backend. | Neil Conway | 2004-05-26 | 1 | -31/+32 |
| * | Repair recalculation failure for nested sub-SELECTs, per bug report from | Tom Lane | 2004-05-11 | 1 | -1/+4 |
| * | Extend set-operation planning to keep track of the sort ordering induced | Tom Lane | 2004-04-07 | 1 | -12/+15 |
| * | Repair optimization bug I introduced in a moment of brain fade back in | Tom Lane | 2004-02-13 | 1 | -7/+6 |
| * | Rename SortMem and VacuumMem to work_mem and maintenance_work_mem. | Tom Lane | 2004-02-03 | 1 | -3/+3 |
| * | When testing whether a sub-plan can do projection, use a general-purpose | Tom Lane | 2004-01-18 | 1 | -10/+7 |
| * | Fix another place that wasn't maintaining AND/OR flatness of an | Tom Lane | 2004-01-12 | 1 | -9/+14 |
| * | Clean up the usage of canonicalize_qual(): in particular, be consistent | Tom Lane | 2003-12-28 | 1 | -15/+18 |
| * | $Header: -> $PostgreSQL Changes ... | PostgreSQL Daemon | 2003-11-29 | 1 | -1/+1 |
| * | Message editing: remove gratuitous variations in message wording, standardize | Peter Eisentraut | 2003-09-25 | 1 | -2/+2 |
| * | Create a 'type cache' that keeps track of the data needed for any particular | Tom Lane | 2003-08-17 | 1 | -2/+4 |
| * | Update copyrights to 2003. | Bruce Momjian | 2003-08-04 | 1 | -2/+2 |
| * | pgindent run. | Bruce Momjian | 2003-08-04 | 1 | -107/+115 |
| * | Error message editing in backend/optimizer, backend/rewrite. | Tom Lane | 2003-07-25 | 1 | -10/+14 |
| * | Do honest transformation and preprocessing of LIMIT/OFFSET clauses, | Tom Lane | 2003-07-03 | 1 | -2/+8 |
| * | Allow GROUP BY, ORDER BY, DISTINCT targets to be unknown literals, | Tom Lane | 2003-06-16 | 1 | -11/+28 |
| * | Implement outer-level aggregates to conform to the SQL spec, with | Tom Lane | 2003-06-06 | 1 | -9/+13 |
| * | Implement feature of new FE/BE protocol whereby RowDescription identifies | Tom Lane | 2003-05-06 | 1 | -64/+16 |
| * | GROUP BY got confused if there were multiple equal() GROUP BY items. | Tom Lane | 2003-03-13 | 1 | -2/+4 |
| * | Restructure parsetree representation of DECLARE CURSOR: now it's a | Tom Lane | 2003-03-10 | 1 | -30/+33 |
| * | Turns out new IN implementation has got some problems in an UPDATE or | Tom Lane | 2003-03-05 | 1 | -3/+3 |
| * | Repair bug reported by Laurent Perez: bad plan generated when UPDATE or | Tom Lane | 2003-03-05 | 1 | -1/+21 |
| * | Marginal tweaks to make sure that roundoff error won't cause us to make | Tom Lane | 2003-02-15 | 1 | -2/+2 |
| * | Teach planner how to propagate pathkeys from sub-SELECTs in FROM up to | Tom Lane | 2003-02-15 | 1 | -2/+15 |
| * | Detect case where an outer join can be reduced to a plain inner join | Tom Lane | 2003-02-09 | 1 | -5/+21 |
| * | Make further use of new bitmapset code: executor's chgParam, extParam, | Tom Lane | 2003-02-09 | 1 | -6/+6 |
| * | Minor code cleanup: remove no-longer-useful pull_subplans() function, | Tom Lane | 2003-02-04 | 1 | -3/+6 |
| * | Tweak planner and executor to avoid doing ExecProject() in table scan | Tom Lane | 2003-02-03 | 1 | -36/+122 |