| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix handling of SIGCHLD, per recent pghackers discussion: on some | Tom Lane | 2001-08-04 | 1 | -2/+4 |
| * | Partial indexes work again, courtesy of Martijn van Oosterhout. | Tom Lane | 2001-07-16 | 1 | -3/+4 |
| * | Restructure index AM interface for index building and index tuple deletion, | Tom Lane | 2001-07-15 | 1 | -2/+2 |
| * | Fix a couple remaining places where GUC variables were assigned to | Tom Lane | 2001-06-25 | 1 | -3/+3 |
| * | Extend GUC concepts of parse_hook and assign_hook to all four supported | Tom Lane | 2001-06-12 | 1 | -2/+2 |
| * | Mark many strings in backend not covered by elog for translation. Also, | Peter Eisentraut | 2001-06-03 | 1 | -10/+13 |
| * | Make bootstrap debug messages more readable. Clean up some clutter. | Peter Eisentraut | 2001-05-12 | 1 | -78/+43 |
| * | Remove dashes in comments that don't need them, rewrap with pgindent. | Bruce Momjian | 2001-03-22 | 1 | -29/+30 |
| * | XLOG (and related) changes: | Tom Lane | 2001-03-13 | 1 | -22/+50 |
| * | Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group. | Bruce Momjian | 2001-01-24 | 1 | -2/+2 |
| * | Restructure backend SIGINT/SIGTERM handling so that 'die' interrupts | Tom Lane | 2001-01-14 | 1 | -6/+5 |
| * | New WAL version - CRC and data blocks backup. | Vadim B. Mikheev | 2000-12-28 | 1 | -1/+4 |
| * | Store current LC_COLLATE and LC_CTYPE settings in pg_control during initdb; | Tom Lane | 2000-11-25 | 1 | -3/+3 |
| * | Put external declarations into header files. | Peter Eisentraut | 2000-11-21 | 1 | -12/+3 |
| * | Fix OID bootstraping. | Vadim B. Mikheev | 2000-11-21 | 1 | -26/+27 |
| * | Auto checkpoint creation. | Vadim B. Mikheev | 2000-11-09 | 1 | -26/+27 |
| * | Make DROP TABLE rollback-able: postpone physical file delete until commit. | Tom Lane | 2000-11-08 | 1 | -2/+2 |
| * | Make the backend grok relative paths for the data directory by converting | Peter Eisentraut | 2000-11-04 | 1 | -11/+18 |
| * | WAL misc | Vadim B. Mikheev | 2000-10-24 | 1 | -1/+5 |
| * | WAL | Vadim B. Mikheev | 2000-10-21 | 1 | -1/+3 |
| * | Code cleanup of user name and user id handling in the backend. The current | Peter Eisentraut | 2000-09-06 | 1 | -2/+2 |
| * | Modify heap_open()/heap_openr() API per pghackers discussion of 11 July. | Tom Lane | 2000-08-03 | 1 | -6/+1 |
| * | Cleanup of code for creating index entries. Functional indexes with | Tom Lane | 2000-07-14 | 1 | -53/+14 |
| * | TOAST | Jan Wieck | 2000-07-03 | 1 | -2/+2 |
| * | Move global internal files to PGDATA/global. | Peter Eisentraut | 2000-07-03 | 1 | -5/+3 |
| * | First phase of memory management rewrite (see backend/utils/mmgr/README | Tom Lane | 2000-06-28 | 1 | -13/+27 |
| * | Second pass over run-time configuration system. Adjust priorities on some | Peter Eisentraut | 2000-06-22 | 1 | -4/+8 |
| * | Get rid of IndexIsUniqueNoCache() kluge by the simple expedient of | Tom Lane | 2000-06-17 | 1 | -25/+11 |
| * | Latest round of fmgr updates. All functions with bool,char, or int2 | Tom Lane | 2000-06-05 | 1 | -3/+3 |
| * | The heralded `Grand Unified Configuration scheme' (GUC) | Peter Eisentraut | 2000-05-31 | 1 | -2/+2 |
| * | Third round of fmgr updates: eliminate calls using fmgr() and | Tom Lane | 2000-05-30 | 1 | -15/+20 |
| * | First round of changes for new fmgr interface. fmgr itself and the | Tom Lane | 2000-05-28 | 1 | -1/+2 |
| * | Ye-old pgindent run. Same 4-space tabs. | Bruce Momjian | 2000-04-12 | 1 | -16/+16 |
| * | Implement reindex command | Hiroshi Inoue | 2000-02-18 | 1 | -1/+2 |
| * | Add: | Bruce Momjian | 2000-01-26 | 1 | -2/+3 |
| * | Fix a passel of problems with incorrect calls to typinput and typoutput | Tom Lane | 2000-01-15 | 1 | -5/+4 |
| * | Fixed all elog related warnings, as well as a few others. | Peter Eisentraut | 2000-01-15 | 1 | -2/+2 |
| * | Correct hardwired type information in bootstrap. | Tom Lane | 2000-01-11 | 1 | -20/+23 |
| * | Rename oid8 -> oidvector and int28 -> int2vector. Cleanup of *out functions. | Bruce Momjian | 2000-01-10 | 1 | -3/+3 |
| * | Required catalog changes for extended LONG attribute storage. | Jan Wieck | 1999-12-20 | 1 | -1/+3 |
| * | Some changes to prepare for LONG attributes. | Jan Wieck | 1999-12-16 | 1 | -2/+2 |
| * | Rename heap_replace to heap_update. | Bruce Momjian | 1999-11-24 | 1 | -2/+2 |
| * | New NameStr macro to convert Name to Str. No need for var.data anymore. | Bruce Momjian | 1999-11-07 | 1 | -7/+7 |
| * | Standardize on MAXPGPATH as the size of a file pathname buffer, | Tom Lane | 1999-10-25 | 1 | -3/+5 |
| * | XLOG (also known as WAL -:)) Bootstrap/Startup/Shutdown. | Vadim B. Mikheev | 1999-10-06 | 1 | -27/+58 |
| * | Massimo's SET FSYNC and SHOW PG_OPTIONS changes, without SET QUERY_LIMIT. | Bruce Momjian | 1999-09-27 | 1 | -2/+1 |
| * | Mega-commit to make heap_open/heap_openr/heap_close take an | Tom Lane | 1999-09-18 | 1 | -11/+18 |
| * | Re-add getopt.h check, remove NT-specific tests for it. | Bruce Momjian | 1999-07-19 | 1 | -5/+4 |
| * | Move some system includes into c.h, and remove duplicates. | Bruce Momjian | 1999-07-17 | 1 | -7/+1 |
| * | Final cleanup. | Bruce Momjian | 1999-07-16 | 1 | -2/+4 |