| Commit message (Expand) | Author | Age | Files | Lines |
| * | Use schema search path to find the first matching contraint name for SET | Bruce Momjian | 2006-04-27 | 1 | -2/+2 |
| * | Simplify ParamListInfo data structure to support only numbered parameters, | Tom Lane | 2006-04-22 | 2 | -75/+35 |
| * | Support the syntax | Tom Lane | 2006-04-15 | 2 | -30/+7 |
| * | Add error location info to ResTarget parse nodes. Allows error cursor to be ... | Tom Lane | 2006-03-23 | 1 | -1/+2 |
| * | Clean up representation of function RTEs for functions returning RECORD. | Tom Lane | 2006-03-16 | 1 | -5/+9 |
| * | Improve parser so that we can show an error cursor position for errors | Tom Lane | 2006-03-14 | 2 | -7/+18 |
| * | Remove the stub support we had for UNION JOIN; per discussion, this is | Tom Lane | 2006-03-07 | 1 | -8/+1 |
| * | Update copyright for 2006. Update scripts. | Bruce Momjian | 2006-03-05 | 16 | -32/+32 |
| * | Add CASCADE option to TRUNCATE. Joachim Wieland | Tom Lane | 2006-03-03 | 1 | -1/+2 |
| * | Teach nodeSort and nodeMaterial to optimize out unnecessary overhead | Tom Lane | 2006-02-28 | 1 | -2/+4 |
| * | Add TABLESPACE and ON COMMIT clauses to CREATE TABLE AS. ON COMMIT is | Neil Conway | 2006-02-19 | 1 | -18/+27 |
| * | DROP IF EXISTS for ROLE/USER/GROUP | Andrew Dunstan | 2006-02-04 | 1 | -1/+2 |
| * | Restructure planner's handling of inheritance. Rather than processing | Tom Lane | 2006-01-31 | 2 | -23/+116 |
| * | Add GRANT ON SEQUENCE syntax to support sequence-only permissions. | Bruce Momjian | 2006-01-21 | 1 | -2/+3 |
| * | Trim an obsolete comment: it is no longer relevant that "SELECT" was | Neil Conway | 2006-01-01 | 1 | -4/+4 |
| * | Implement SQL-compliant treatment of row comparisons for < <= > >= cases | Tom Lane | 2005-12-28 | 4 | -47/+101 |
| * | Teach planner how to rearrange join order for some classes of OUTER JOIN. | Tom Lane | 2005-12-20 | 3 | -18/+41 |
| * | Spell "explicitly" correctly, per Simon. | Tom Lane | 2005-12-07 | 1 | -3/+3 |
| * | Adjust scan plan nodes to avoid getting an extra AccessShareLock on a | Tom Lane | 2005-12-02 | 1 | -1/+10 |
| * | Tweak hash join code to use an additional heuristic for deciding whether | Tom Lane | 2005-11-28 | 1 | -1/+3 |
| * | Change the parser to translate "foo [NOT] IN (expression-list)" to | Tom Lane | 2005-11-28 | 1 | -2/+3 |
| * | Teach tid-scan code to make use of "ctid = ANY (array)" clauses, so that | Tom Lane | 2005-11-26 | 3 | -10/+14 |
| * | Change seqscan logic so that we check visibility of all tuples on a page | Tom Lane | 2005-11-26 | 1 | -7/+1 |
| * | Teach planner and executor to handle ScalarArrayOpExpr as an indexable | Tom Lane | 2005-11-25 | 1 | -11/+38 |
| * | Re-run pgindent, fixing a problem where comment lines after a blank | Bruce Momjian | 2005-11-22 | 4 | -25/+25 |
| * | DROP DATABASE IF EXISTS variant | Andrew Dunstan | 2005-11-22 | 1 | -1/+2 |
| * | Implement DROP OWNED and REASSIGN OWNED. These new commands facilitate the | Alvaro Herrera | 2005-11-21 | 2 | -2/+24 |
| * | DROP objecttype IF EXISTS for the following objects: | Andrew Dunstan | 2005-11-19 | 1 | -1/+2 |
| * | Restore the former RestrictInfo field valid_everywhere (but invert the flag | Tom Lane | 2005-11-14 | 1 | -1/+8 |
| * | Prevent ExecInsert() and ExecUpdate() from scribbling on the result tuple | Tom Lane | 2005-11-14 | 1 | -1/+3 |
| * | Adjust parser so that POSTQUEL-style implicit RTEs are stored with | Tom Lane | 2005-10-26 | 1 | -9/+7 |
| * | Standard pgindent run for 8.1. | Bruce Momjian | 2005-10-15 | 9 | -256/+224 |
| * | The original patch to avoid building a hash join's hashtable when the | Tom Lane | 2005-09-25 | 1 | -2/+3 |
| * | Tweak nodeBitmapAnd to stop evaluating sub-plan scans if it finds it's | Tom Lane | 2005-08-28 | 1 | -1/+3 |
| * | Change the division of labor between grouping_planner and query_planner | Tom Lane | 2005-08-27 | 1 | -1/+4 |
| * | Add ALTER TABLE ENABLE/DISABLE TRIGGER commands. Change pg_dump to | Tom Lane | 2005-08-23 | 1 | -4/+10 |
| * | Add NOWAIT option to SELECT FOR UPDATE/SHARE. | Tom Lane | 2005-08-01 | 3 | -7/+24 |
| * | Add ALTER object SET SCHEMA capability for a limited but useful set of | Tom Lane | 2005-08-01 | 2 | -4/+20 |
| * | Add per-user and per-database connection limit options. | Tom Lane | 2005-07-31 | 2 | -2/+10 |
| * | Fix a bunch of bad interactions between partial indexes and the new | Tom Lane | 2005-07-28 | 1 | -1/+11 |
| * | Add a role property 'rolinherit' which, when false, denotes that the role | Tom Lane | 2005-07-26 | 1 | -1/+14 |
| * | Simple constraint exclusion. For now, only child tables of inheritance | Tom Lane | 2005-07-23 | 1 | -5/+15 |
| * | Teach planner about some cases where a restriction clause can be | Tom Lane | 2005-07-02 | 1 | -7/+11 |
| * | Bring syntax of role-related commands into SQL compliance. To avoid | Tom Lane | 2005-06-28 | 1 | -4/+4 |
| * | Replace pg_shadow and pg_group by new role-capable catalogs pg_authid | Tom Lane | 2005-06-28 | 2 | -54/+43 |
| * | Add Oracle-compatible GREATEST and LEAST functions. Pavel Stehule | Tom Lane | 2005-06-26 | 3 | -3/+33 |
| * | Make REINDEX DATABASE do what one would expect, namely reindex all indexes | Tom Lane | 2005-06-22 | 1 | -3/+3 |
| * | Avoid WAL-logging individual tuple insertions during CREATE TABLE AS | Tom Lane | 2005-06-20 | 1 | -1/+3 |
| * | Two-phase commit. Original patch by Heikki Linnakangas, with additional | Tom Lane | 2005-06-17 | 1 | -2/+6 |
| * | Change the implementation of hash join to attempt to avoid unnecessary | Neil Conway | 2005-06-15 | 1 | -1/+2 |