Age | Commit message (Expand) | Author |
2009-10-06 | Change CREATE TABLE so that column default expressions coming from differentHEADmaster | Tom Lane |
2009-10-05 | Create an ALTER DEFAULT PRIVILEGES command, which allows users to adjust | Tom Lane |
2009-09-22 | Implement the DO statement to support execution of PL code without having | Tom Lane |
2009-09-17 | Implement "join removal" for cases where the inner side of a left join | Tom Lane |
2009-07-30 | Merge the Constraint and FkConstraint node types into a single type. | Tom Lane |
2009-07-29 | Support deferrable uniqueness constraints. | Tom Lane |
2009-07-26 | Extend EXPLAIN to allow generic options to be specified. | Tom Lane |
2009-07-20 | DROP IF EXISTS for columns and constraints. Andres Freund. | Andrew Dunstan |
2009-07-16 | Make backend header files C++ safe | Peter Eisentraut |
2009-06-18 | Fix the just-reported problem that you can't specify all four trigger event | Tom Lane |
2009-06-11 | 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef list | Bruce Momjian |
2009-04-16 | Fix planner to restore its previous level of intelligence about pushing | Tom Lane |
2009-04-05 | Change EXPLAIN output so that subplans and initplans (particularly CTEs) | Tom Lane |
2009-04-04 | Remove the recently added node types ReloptElem and OptionDefElem in favor | Tom Lane |
2009-03-26 | If we expect a hash join to be performed in multiple batches, suppress | Tom Lane |
2009-03-24 | Implement "fastupdate" support for GIN indexes, in which we try to accumulate | Tom Lane |
2009-03-21 | Optimize multi-batch hash joins when the outer relation has a nonuniform | Tom Lane |
2009-03-10 | Make SubPlan nodes carry the result's typmod as well as datatype OID. This is | Tom Lane |
2009-02-25 | Get rid of the rather fuzzily defined FlattenedSubLink node type in favor of | Tom Lane |
2009-02-24 | Add the possibility to specify an explicit validator function for foreign-data | Peter Eisentraut |
2009-02-06 | Fix cost_mergejoin's failure to adjust for rescanning of non-unique merge join | Tom Lane |
2009-02-02 | Allow reloption names to have qualifiers, initially supporting a TOAST | Alvaro Herrera |
2009-01-22 | Support column-level privileges, as required by SQL standard. | Tom Lane |
2009-01-16 | Add vacuum_freeze_table_age GUC option, to control when VACUUM should | Heikki Linnakangas |
2009-01-10 | Revise the TIDBitmap API to support multiple concurrent iterations over a | Tom Lane |
2009-01-01 | Update copyright for 2009. | Bruce Momjian |
2008-12-31 | Add some basic support for window frame clauses to the window-functions | Tom Lane |
2008-12-28 | Support window functions a la SQL:2008. | Tom Lane |
2008-12-19 | SQL/MED catalog manipulation facilities | Peter Eisentraut |
2008-12-04 | Default values for function arguments | Peter Eisentraut |
2008-12-04 | Utilize the visibility map in autovacuum, too. There was an oversight in | Heikki Linnakangas |
2008-12-01 | Fix an oversight in the code that makes transitive-equality deductions from | Tom Lane |
2008-11-24 | CLUSTER VERBOSE and corresponding clusterdb --verbose option | Peter Eisentraut |
2008-11-15 | Make SELECT FOR UPDATE/SHARE work on inheritance trees, by having the plan | Tom Lane |
2008-11-11 | Get rid of adjust_appendrel_attr_needed(), which has been broken ever since | Tom Lane |
2008-10-31 | Add support for user-defined I/O conversion casts. | Heikki Linnakangas |
2008-10-21 | Add a concept of "placeholder" variables to the planner. These are variables | Tom Lane |
2008-10-07 | Extend CTE patch to support recursive UNION (ie, without ALL). The | Tom Lane |
2008-10-06 | When expanding a whole-row Var into a RowExpr during ResolveNew(), attach | Tom Lane |
2008-10-04 | Implement SQL-standard WITH clauses, including WITH RECURSIVE. | Tom Lane |
2008-09-09 | Improve the plan cache invalidation mechanism to make it invalidate plans | Tom Lane |
2008-09-01 | Add a bunch of new error location reports to parse-analysis error messages. | Tom Lane |
2008-08-30 | Fix the raw-parsetree representation of star (as in SELECT * FROM or | Tom Lane |
2008-08-29 | In GCC-based builds, use a better newNode() macro that relies on GCC-specific | Tom Lane |
2008-08-28 | Extend the parser location infrastructure to include a location field in | Tom Lane |
2008-08-25 | Move exprType(), exprTypmod(), expression_tree_walker(), and related routines | Tom Lane |
2008-08-22 | Arrange to convert EXISTS subqueries that are equivalent to hashable IN | Tom Lane |
2008-08-14 | Implement SEMI and ANTI joins in the planner and executor. (Semijoins replace | Tom Lane |
2008-08-07 | Improve INTERSECT/EXCEPT hashing by realizing that we don't need to make any | Tom Lane |
2008-08-07 | Support hashing for duplicate-elimination in INTERSECT and EXCEPT queries. | Tom Lane |