| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix ALTER TABLE ... ADD COLUMN for inheritance cases. | Bruce Momjian | 2002-10-21 | 1 | -2/+1 |
| * | Move responsibility for setting QuerySnapshot for utility statements | Tom Lane | 2002-10-08 | 1 | -9/+2 |
| * | Ensure that before truncating CLOG, we force a checkpoint even if no | Tom Lane | 2002-09-26 | 1 | -6/+4 |
| * | pgindent run. | Bruce Momjian | 2002-09-04 | 1 | -69/+85 |
| * | CREATE OR REPLACE VIEW, CREATE OR REPLACE RULE. | Tom Lane | 2002-09-02 | 1 | -2/+2 |
| * | Add attisinherited column to pg_attribute; use it to guard against | Tom Lane | 2002-08-30 | 1 | -4/+6 |
| * | Code review for standalone composite types, query-specified composite | Tom Lane | 2002-08-29 | 1 | -7/+2 |
| * | PREPARE/EXECUTE statements. Patch by Neil Conway, some kibitzing | Tom Lane | 2002-08-27 | 1 | -9/+16 |
| * | [ Newest version of patch applied.] | Bruce Momjian | 2002-08-17 | 1 | -3/+2 |
| * | Improve documentation of trigger firing queue handling, cleanup. | Bruce Momjian | 2002-08-17 | 1 | -4/+3 |
| * | Tom Lane wrote: | Bruce Momjian | 2002-08-15 | 1 | -1/+15 |
| * | Fix permission checking for temp-table namespace. | Tom Lane | 2002-08-07 | 1 | -15/+10 |
| * | The attached patch implements START TRANSACTION, per SQL99. The | Bruce Momjian | 2002-08-04 | 1 | -1/+23 |
| * | The attached patch removes the last remnants of support for | Bruce Momjian | 2002-07-30 | 1 | -12/+1 |
| * | Implement CREATE/DROP OPERATOR CLASS. Work still remains: need more | Tom Lane | 2002-07-29 | 1 | -1/+9 |
| * | Implement DROP CONVERSION | Tatsuo Ishii | 2002-07-25 | 1 | -3/+2 |
| * | pg_cast table, and standards-compliant CREATE/DROP CAST commands, plus | Peter Eisentraut | 2002-07-18 | 1 | -1/+9 |
| * | Implement DROP SCHEMA. It lacks support for dropping conversions and | Tom Lane | 2002-07-18 | 1 | -11/+10 |
| * | Second phase of committing Rod Taylor's pg_depend/pg_constraint patch. | Tom Lane | 2002-07-12 | 1 | -14/+9 |
| * | Add new CREATE CONVERSION/DROP CONVERSION command. | Tatsuo Ishii | 2002-07-11 | 1 | -1/+13 |
| * | First phase of applying Rod Taylor's pg_depend patch. This just adds | Tom Lane | 2002-07-01 | 1 | -18/+9 |
| * | Update copyright to 2002. | Bruce Momjian | 2002-06-20 | 1 | -2/+2 |
| * | Improve COPY syntax to use WITH clause, keep backward compatibility. | Bruce Momjian | 2002-06-20 | 1 | -15/+3 |
| * | Change CREATE DATABASE to use DefElem instead of constructing structure | Bruce Momjian | 2002-06-18 | 1 | -5/+2 |
| * | Remove SetQuerySnapshot() from FETCH processing. No longer necessary | Tom Lane | 2002-05-21 | 1 | -3/+1 |
| * | Extend syntax of CREATE FUNCTION to resemble SQL99. | Peter Eisentraut | 2002-05-17 | 1 | -3/+3 |
| * | Merge the last few variable.c configuration variables into the generic | Tom Lane | 2002-05-17 | 1 | -3/+3 |
| * | Clean up loose ends remaining from schema privileges discussion. | Tom Lane | 2002-04-30 | 1 | -21/+47 |
| * | Restructure aclcheck error reporting to make permission-failure | Tom Lane | 2002-04-27 | 1 | -6/+6 |
| * | Attached is a patch for ALTER TRIGGER RENAME per the above thread. I | Bruce Momjian | 2002-04-24 | 1 | -16/+23 |
| * | Rule names are now unique per-relation, rather than unique globally. | Tom Lane | 2002-04-18 | 1 | -10/+17 |
| * | The contents of command.c, creatinh.c, define.c, remove.c and rename.c | Tom Lane | 2002-04-15 | 1 | -4/+5 |
| * | Checking to decide whether relations are system relations now depends | Tom Lane | 2002-04-12 | 1 | -16/+4 |
| * | Update new Russian FAQ. | Bruce Momjian | 2002-04-12 | 1 | -6/+6 |
| * | Functions live in namespaces. Qualified function names work, eg | Tom Lane | 2002-04-09 | 1 | -7/+2 |
| * | ALTER TABLE SET/DROP NOT NULL, from Christopher Kings-Lynne. | Tom Lane | 2002-04-01 | 1 | -1/+11 |
| * | Make renamerel take an OID, not a RangeVar, to identify the relation | Tom Lane | 2002-03-31 | 1 | -16/+4 |
| * | Reimplement temp tables using schemas. The temp table map is history; | Tom Lane | 2002-03-31 | 1 | -4/+2 |
| * | Mop-up some infelicities in new relation lookup handling. | Tom Lane | 2002-03-29 | 1 | -3/+7 |
| * | pg_type has a typnamespace column; system now supports creating types | Tom Lane | 2002-03-29 | 1 | -53/+74 |
| * | pg_class has a relnamespace column. You can create and access tables | Tom Lane | 2002-03-26 | 1 | -55/+63 |
| * | EXPLAIN output now comes out as a query result, not a NOTICE message. | Tom Lane | 2002-03-24 | 1 | -6/+2 |
| * | A little further progress on schemas: push down RangeVars into | Tom Lane | 2002-03-22 | 1 | -5/+1 |
| * | Change the aclchk.c routines to uniformly use OIDs to identify the | Tom Lane | 2002-03-21 | 1 | -44/+35 |
| * | First phase of SCHEMA changes, concentrating on fixing the grammar and | Tom Lane | 2002-03-21 | 1 | -38/+44 |
| * | Code review for DOMAIN patch. | Tom Lane | 2002-03-20 | 1 | -3/+3 |
| * | The attached patch cleans up the implementation of the TRUNCATE command; | Bruce Momjian | 2002-03-19 | 1 | -24/+3 |
| * | Add DOMAIN support. Includes manual pages and regression tests, from | Bruce Momjian | 2002-03-19 | 1 | -1/+19 |
| * | Back out domain patch until it works properly. | Bruce Momjian | 2002-03-07 | 1 | -10/+1 |
| * | Fix syntax error introduced by patch. | Bruce Momjian | 2002-03-06 | 1 | -31/+1 |