| Commit message (Expand) | Author | Age | Files | Lines |
| * | More cleanup of userid to be AclId rather than Oid. | Bruce Momjian | 2002-12-05 | 1 | -5/+5 |
| * | Repair core dump when trying to delete an entry from an already-NULL | Tom Lane | 2002-12-02 | 1 | -2/+5 |
| * | Remove encoding lookups from grammar stage, push them back to places | Tom Lane | 2002-11-02 | 1 | -6/+26 |
| * | Fix places that were using IsTransactionBlock() as an (inadequate) check | Tom Lane | 2002-10-21 | 1 | -5/+3 |
| * | pgindent run. | Bruce Momjian | 2002-09-04 | 1 | -24/+25 |
| * | Arrange for the default permissions on a database to allow temp table | Tom Lane | 2002-09-03 | 1 | -2/+7 |
| * | Remove all traces of multibyte and locale options. Clean up comments | Peter Eisentraut | 2002-09-03 | 1 | -2/+2 |
| * | Remove sys/types.h in files that include postgres.h, and hence c.h, | Bruce Momjian | 2002-09-02 | 1 | -2/+1 |
| * | Code review for HeapTupleHeader changes. Add version number to page headers | Tom Lane | 2002-09-02 | 1 | -5/+1 |
| * | Remove #ifdef MULTIBYTE per hackers list discussion. | Tatsuo Ishii | 2002-08-29 | 1 | -7/+1 |
| * | has_table_privilege spawns scions has_database_privilege, has_function_privil... | Tom Lane | 2002-08-09 | 1 | -1/+76 |
| * | Restructure system-catalog index updating logic. Instead of having | Tom Lane | 2002-08-05 | 1 | -27/+5 |
| * | oid is needed, it is added at the end of the struct (after the null | Bruce Momjian | 2002-07-20 | 1 | -3/+7 |
| * | Second phase of committing Rod Taylor's pg_depend/pg_constraint patch. | Tom Lane | 2002-07-12 | 1 | -3/+8 |
| * | 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 | -2/+2 |
| * | Change CREATE DATABASE to use DefElem instead of constructing structure | Bruce Momjian | 2002-06-18 | 1 | -4/+55 |
| * | AlterDatabaseSet() forgot to update the indexes on pg_database. | Tom Lane | 2002-05-25 | 1 | -1/+15 |
| * | Remove global variable scanCommandId in favor of storing a command ID | Tom Lane | 2002-05-21 | 1 | -2/+2 |
| * | Restructure indexscan API (index_beginscan, index_getnext) per | Tom Lane | 2002-05-20 | 1 | -7/+7 |
| * | Merge the last few variable.c configuration variables into the generic | Tom Lane | 2002-05-17 | 1 | -5/+3 |
| * | Support toasting of shared system relations, and provide toast tables for | Tom Lane | 2002-04-27 | 1 | -19/+21 |
| * | Restructure AclItem representation so that we can have more than eight | Tom Lane | 2002-04-21 | 1 | -7/+8 |
| * | Make sure that usesuper is always accessed through superuser(), so that the | Peter Eisentraut | 2002-04-11 | 1 | -25/+13 |
| * | Change made to elog: | Bruce Momjian | 2002-03-06 | 1 | -3/+3 |
| * | User and database-specific session defaults for run-time configuration | Peter Eisentraut | 2002-03-01 | 1 | -1/+78 |
| * | Add OWNER option to CREATE DATABASE, so superusers can create databases | Tom Lane | 2002-02-24 | 1 | -6/+27 |
| * | Guard against createdb --location=PGDATA foo; without this, the code | Tom Lane | 2002-02-23 | 1 | -2/+18 |
| * | pgindent run on all C files. Java run to follow. initdb/regression | Bruce Momjian | 2001-10-25 | 1 | -3/+4 |
| * | Commit Karel's patch. | Tatsuo Ishii | 2001-09-06 | 1 | -1/+12 |
| * | Transaction IDs wrap around, per my proposal of 13-Aug-01. More | Tom Lane | 2001-08-26 | 1 | -14/+30 |
| * | Make OIDs optional, per discussions in pghackers. WITH OIDS is still the | Tom Lane | 2001-08-10 | 1 | -4/+4 |
| * | Fix handling of SIGCHLD, per recent pghackers discussion: on some | Tom Lane | 2001-08-04 | 1 | -6/+3 |
| * | First non-stub implementation of shared free space map. It's not super | Tom Lane | 2001-07-02 | 1 | -2/+8 |
| * | Clean up various to-do items associated with system indexes: | Tom Lane | 2001-06-12 | 1 | -6/+5 |
| * | pgindent run. Make it all clean. | Bruce Momjian | 2001-03-22 | 1 | -33/+40 |
| * | Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group. | Bruce Momjian | 2001-01-24 | 1 | -2/+2 |
| * | Fix all the places that called heap_update() and heap_delete() without | Tom Lane | 2001-01-23 | 1 | -2/+2 |
| * | Need to do BufferSync at end of DROP DATABASE as well as CREATE DATABASE. | Tom Lane | 2001-01-14 | 1 | -3/+13 |
| * | No more #ifdef XLOG. | Vadim B. Mikheev | 2000-11-30 | 1 | -5/+1 |
| * | Put back BufferSync() for WAL after database creation. | Tom Lane | 2000-11-18 | 1 | -2/+13 |
| * | Change SearchSysCache coding conventions so that a reference count is | Tom Lane | 2000-11-16 | 1 | -4/+6 |
| * | Extend CREATE DATABASE to allow selection of a template database to be | Tom Lane | 2000-11-14 | 1 | -130/+221 |
| * | Keep track of the last active slot in the shared ProcState array, so | Tom Lane | 2000-11-12 | 1 | -2/+2 |
| * | Clean up compiler warnings. | Tom Lane | 2000-11-08 | 1 | -5/+4 |
| * | Reimplement alternative database locations with symlinks. No changes in | Peter Eisentraut | 2000-11-08 | 1 | -90/+109 |
| * | WAL | Vadim B. Mikheev | 2000-10-28 | 1 | -1/+4 |
| * | Add new datlastsysoid to pg_database. | Philip Warner | 2000-10-22 | 1 | -5/+16 |
| * | New file naming. Database OID is used as "tablespace" id and | Vadim B. Mikheev | 2000-10-16 | 1 | -1/+23 |
| * | Code cleanup of user name and user id handling in the backend. The current | Peter Eisentraut | 2000-09-06 | 1 | -15/+10 |