| Commit message (Expand) | Author | Age | Files | Lines |
| * | Update CVS HEAD for 2007 copyright. Back branches are typically not | Bruce Momjian | 2007-01-05 | 1 | -2/+2 |
| * | pgindent run for 8.2. | Bruce Momjian | 2006-10-04 | 1 | -15/+16 |
| * | Get rid of the separate RULE privilege for tables: now only a table's owner | Tom Lane | 2006-09-05 | 1 | -48/+27 |
| * | Apply a simple solution to the problem of making INSERT/UPDATE/DELETE | Tom Lane | 2006-09-02 | 1 | -66/+135 |
| * | Tweak SPI_cursor_open to allow INSERT/UPDATE/DELETE RETURNING; this was | Tom Lane | 2006-08-12 | 1 | -2/+3 |
| * | Mark a few functions as static or NOT_USED. | Bruce Momjian | 2006-07-18 | 1 | -1/+3 |
| * | Remove 576 references of include files that were not needed. | Bruce Momjian | 2006-07-14 | 1 | -3/+1 |
| * | Update copyright for 2006. Update scripts. | Bruce Momjian | 2006-03-05 | 1 | -2/+2 |
| * | Re-run pgindent, fixing a problem where comment lines after a blank | Bruce Momjian | 2005-11-22 | 1 | -3/+4 |
| * | A few trivial code cleanups motivated by reading warnings generated | Tom Lane | 2005-10-18 | 1 | -3/+1 |
| * | Standard pgindent run for 8.1. | Bruce Momjian | 2005-10-15 | 1 | -65/+59 |
| * | Replace pg_shadow and pg_group by new role-capable catalogs pg_authid | Tom Lane | 2005-06-28 | 1 | -7/+7 |
| * | Completion of project to use fixed OIDs for all system catalogs and | Tom Lane | 2005-04-14 | 1 | -6/+4 |
| * | First phase of project to use fixed OIDs for all system catalogs and | Tom Lane | 2005-04-14 | 1 | -3/+3 |
| * | Merge Resdom nodes into TargetEntry nodes to simplify code and save a | Tom Lane | 2005-04-06 | 1 | -7/+9 |
| * | Change heap_modifytuple() to require a TupleDesc rather than a | Neil Conway | 2005-01-27 | 1 | -2/+2 |
| * | Phase 1 of fix for 'SMgrRelation hashtable corrupted' problem. This | Tom Lane | 2005-01-10 | 1 | -4/+2 |
| * | Tag appropriate files for rc3 | PostgreSQL Daemon | 2004-12-31 | 1 | -2/+2 |
| * | Pgindent run for 8.0. | Bruce Momjian | 2004-08-29 | 1 | -18/+18 |
| * | Update copyright to 2004. | Bruce Momjian | 2004-08-29 | 1 | -2/+2 |
| * | Use the new List API function names throughout the backend, and disable the | Neil Conway | 2004-05-30 | 1 | -3/+3 |
| * | Reimplement the linked list data structure used throughout the backend. | Neil Conway | 2004-05-26 | 1 | -6/+6 |
| * | setRuleCheckAsUser has to be applied to any subqueries appearing in a | Tom Lane | 2004-05-18 | 1 | -8/+17 |
| * | Restructure smgr API as per recent proposal. smgr no longer depends on | Tom Lane | 2004-02-10 | 1 | -2/+7 |
| * | Fix permission-checking bug reported by Tim Burgess 10-Feb-03 (this time | Tom Lane | 2004-01-14 | 1 | -5/+5 |
| * | $Header: -> $PostgreSQL Changes ... | PostgreSQL Daemon | 2003-11-29 | 1 | -1/+1 |
| * | More message editing, some suggested by Alvaro Herrera | Peter Eisentraut | 2003-09-29 | 1 | -2/+2 |
| * | Various message fixes, among those fixes for the previous round of fixes | Peter Eisentraut | 2003-09-26 | 1 | -3/+3 |
| * | Message editing: remove gratuitous variations in message wording, standardize | Peter Eisentraut | 2003-09-25 | 1 | -8/+8 |
| * | Disallow converting a table to a view if it has triggers, indexes, or | Tom Lane | 2003-09-17 | 1 | -3/+25 |
| * | Update copyrights to 2003. | Bruce Momjian | 2003-08-04 | 1 | -2/+2 |
| * | pgindent run. | Bruce Momjian | 2003-08-04 | 1 | -13/+13 |
| * | Adjust 'permission denied' messages to be more useful and consistent. | Tom Lane | 2003-08-01 | 1 | -2/+3 |
| * | Error message editing in backend/optimizer, backend/rewrite. | Tom Lane | 2003-07-25 | 1 | -29/+65 |
| * | Adjust API of expression_tree_mutator and query_tree_mutator to | Tom Lane | 2003-01-17 | 1 | -2/+2 |
| * | More cleanup of userid to be AclId rather than Oid. | Bruce Momjian | 2002-12-05 | 1 | -3/+3 |
| * | Tweak querytree-dependency-extraction code so that columns of tables | Tom Lane | 2002-09-11 | 1 | -2/+3 |
| * | pgindent run. | Bruce Momjian | 2002-09-04 | 1 | -24/+25 |
| * | CREATE OR REPLACE VIEW, CREATE OR REPLACE RULE. | Tom Lane | 2002-09-02 | 1 | -18/+59 |
| * | Restructure system-catalog index updating logic. Instead of having | Tom Lane | 2002-08-05 | 1 | -22/+4 |
| * | ALTER TABLE DROP COLUMN works. Patch by Christopher Kings-Lynne, | Tom Lane | 2002-08-02 | 1 | -1/+11 |
| * | Add code to extract dependencies from an expression tree, and use it | Tom Lane | 2002-07-16 | 1 | -10/+22 |
| * | Second phase of committing Rod Taylor's pg_depend/pg_constraint patch. | Tom Lane | 2002-07-12 | 1 | -1/+21 |
| * | Update copyright to 2002. | Bruce Momjian | 2002-06-20 | 1 | -2/+2 |
| * | Remove global variable scanCommandId in favor of storing a command ID | Tom Lane | 2002-05-21 | 1 | -4/+2 |
| * | Restructure indexscan API (index_beginscan, index_getnext) per | Tom Lane | 2002-05-20 | 1 | -10/+3 |
| * | First pass at set-returning-functions in FROM, by Joe Conway with | Tom Lane | 2002-05-12 | 1 | -2/+2 |
| * | Restructure aclcheck error reporting to make permission-failure | Tom Lane | 2002-04-27 | 1 | -7/+5 |
| * | Change naming rule for ON SELECT rules of views: they're all just | Tom Lane | 2002-04-19 | 1 | -11/+19 |
| * | Rule names are now unique per-relation, rather than unique globally. | Tom Lane | 2002-04-18 | 1 | -19/+20 |