| Commit message (Expand) | Author | Age | Files | Lines |
| * | When FOR UPDATE/SHARE is used with LIMIT, put the LockRows plan node | Tom Lane | 2009-10-28 | 1 | -1/+3 |
| * | Re-implement EvalPlanQual processing to improve its performance and eliminate | Tom Lane | 2009-10-26 | 1 | -5/+23 |
| * | Code review for LIKE INCLUDING patch --- clean up some cosmetic and not | Tom Lane | 2009-10-13 | 1 | -1/+2 |
| * | Move the handling of SELECT FOR UPDATE locking and rechecking out of | Tom Lane | 2009-10-12 | 1 | -1/+20 |
| * | Split the processing of INSERT/UPDATE/DELETE operations out of execMain.c. | Tom Lane | 2009-10-10 | 1 | -4/+18 |
| * | Support use of function argument names to identify which actual arguments | Tom Lane | 2009-10-08 | 1 | -1/+15 |
| * | Change CREATE TABLE so that column default expressions coming from different | Tom Lane | 2009-10-06 | 1 | -2/+2 |
| * | Implement "join removal" for cases where the inner side of a left join | Tom Lane | 2009-09-17 | 1 | -1/+14 |
| * | Merge the Constraint and FkConstraint node types into a single type. | Tom Lane | 2009-07-30 | 1 | -37/+48 |
| * | Support deferrable uniqueness constraints. | Tom Lane | 2009-07-29 | 1 | -1/+7 |
| * | Make backend header files C++ safe | Peter Eisentraut | 2009-07-16 | 1 | -6/+6 |
| * | 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef list | Bruce Momjian | 2009-06-11 | 1 | -4/+4 |
| * | Fix planner to restore its previous level of intelligence about pushing | Tom Lane | 2009-04-16 | 1 | -1/+2 |
| * | Change EXPLAIN output so that subplans and initplans (particularly CTEs) | Tom Lane | 2009-04-05 | 1 | -1/+2 |
| * | Remove the recently added node types ReloptElem and OptionDefElem in favor | Tom Lane | 2009-04-04 | 1 | -14/+3 |
| * | If we expect a hash join to be performed in multiple batches, suppress | Tom Lane | 2009-03-26 | 1 | -1/+2 |
| * | Optimize multi-batch hash joins when the outer relation has a nonuniform | Tom Lane | 2009-03-21 | 1 | -1/+6 |
| * | Make SubPlan nodes carry the result's typmod as well as datatype OID. This is | Tom Lane | 2009-03-10 | 1 | -1/+2 |
| * | Get rid of the rather fuzzily defined FlattenedSubLink node type in favor of | Tom Lane | 2009-02-25 | 1 | -15/+1 |
| * | Fix cost_mergejoin's failure to adjust for rescanning of non-unique merge join | Tom Lane | 2009-02-06 | 1 | -2/+3 |
| * | Allow reloption names to have qualifiers, initially supporting a TOAST | Alvaro Herrera | 2009-02-02 | 1 | -1/+14 |
| * | Support column-level privileges, as required by SQL standard. | Tom Lane | 2009-01-22 | 1 | -3/+3 |
| * | Update copyright for 2009. | Bruce Momjian | 2009-01-01 | 1 | -2/+2 |
| * | Add some basic support for window frame clauses to the window-functions | Tom Lane | 2008-12-31 | 1 | -1/+6 |
| * | Support window functions a la SQL:2008. | Tom Lane | 2008-12-28 | 1 | -1/+87 |
| * | Fix an oversight in the code that makes transitive-equality deductions from | Tom Lane | 2008-12-01 | 1 | -1/+2 |
| * | Make SELECT FOR UPDATE/SHARE work on inheritance trees, by having the plan | Tom Lane | 2008-11-15 | 1 | -1/+3 |
| * | Get rid of adjust_appendrel_attr_needed(), which has been broken ever since | Tom Lane | 2008-11-11 | 1 | -2/+1 |
| * | Add a concept of "placeholder" variables to the planner. These are variables | Tom Lane | 2008-10-21 | 1 | -1/+33 |
| * | Extend CTE patch to support recursive UNION (ie, without ALL). The | Tom Lane | 2008-10-07 | 1 | -1/+14 |
| * | When expanding a whole-row Var into a RowExpr during ResolveNew(), attach | Tom Lane | 2008-10-06 | 1 | -1/+2 |
| * | Implement SQL-standard WITH clauses, including WITH RECURSIVE. | Tom Lane | 2008-10-04 | 1 | -4/+114 |
| * | Improve the plan cache invalidation mechanism to make it invalidate plans | Tom Lane | 2008-09-09 | 1 | -6/+22 |
| * | Add a bunch of new error location reports to parse-analysis error messages. | Tom Lane | 2008-09-01 | 1 | -3/+5 |
| * | Fix the raw-parsetree representation of star (as in SELECT * FROM or | Tom Lane | 2008-08-30 | 1 | -1/+10 |
| * | Extend the parser location infrastructure to include a location field in | Tom Lane | 2008-08-28 | 1 | -6/+40 |
| * | Arrange to convert EXISTS subqueries that are equivalent to hashable IN | Tom Lane | 2008-08-22 | 1 | -1/+14 |
| * | Implement SEMI and ANTI joins in the planner and executor. (Semijoins replace | Tom Lane | 2008-08-14 | 1 | -22/+23 |
| * | Improve INTERSECT/EXCEPT hashing by realizing that we don't need to make any | Tom Lane | 2008-08-07 | 1 | -1/+2 |
| * | Support hashing for duplicate-elimination in INTERSECT and EXCEPT queries. | Tom Lane | 2008-08-07 | 1 | -1/+3 |
| * | Teach the system how to use hashing for UNION. (INTERSECT/EXCEPT will follow, | Tom Lane | 2008-08-07 | 1 | -1/+2 |
| * | Improve SELECT DISTINCT to consider hash aggregation, as well as sort/uniq, | Tom Lane | 2008-08-05 | 1 | -1/+2 |
| * | Rearrange the querytree representation of ORDER BY/GROUP BY/DISTINCT items | Tom Lane | 2008-08-02 | 1 | -18/+7 |
| * | Add dump support for SortBy nodes. Needed this while debugging a reported | Tom Lane | 2008-07-17 | 1 | -1/+15 |
| * | Support "variadic" functions, which can accept a variable number of arguments | Tom Lane | 2008-07-16 | 1 | -1/+2 |
| * | Remove typename from A_Const. | Alvaro Herrera | 2008-04-29 | 1 | -2/+1 |
| * | Since createplan.c no longer cares whether index operators are lossy, it has | Tom Lane | 2008-04-13 | 1 | -5/+1 |
| * | Remove TypeName struct's timezone flag, which has been write-only storage | Tom Lane | 2008-03-21 | 1 | -2/+1 |
| * | Arrange for an explicit cast applied to an ARRAY[] constructor to be applied | Tom Lane | 2008-03-20 | 1 | -1/+12 |
| * | Fix an omission in the outfuncs.c support for Agg nodes: the grpColIdx | Neil Conway | 2008-01-09 | 1 | -1/+12 |