| Commit message (Expand) | Author | Age | Files | Lines |
| * | Dept. of further reflection: I looked around to see if any other callers | Tom Lane | 2004-08-15 | 1 | -6/+7 |
| * | Xmin calculations should consider only top transaction IDs, and | Tom Lane | 2004-08-15 | 1 | -3/+3 |
| * | Some mop-up work for savepoints (nested transactions). Store a small | Tom Lane | 2004-08-01 | 1 | -75/+227 |
| * | Restructure error handling as recently discussed. It is now really | Tom Lane | 2004-07-31 | 1 | -14/+32 |
| * | Fix subtransaction behavior for large objects, temp namespace, files, | Tom Lane | 2004-07-28 | 3 | -103/+244 |
| * | Replace nested-BEGIN syntax for subtransactions with spec-compliant | Tom Lane | 2004-07-27 | 1 | -13/+10 |
| * | Invent WAL timelines, as per recent discussion, to make point-in-time | Tom Lane | 2004-07-21 | 1 | -1/+2 |
| * | Invent ResourceOwner mechanism as per my recent proposal, and use it to | Tom Lane | 2004-07-17 | 5 | -271/+298 |
| * | Move TablespaceCreateDbspace() call into smgrcreate(), which is where it | Tom Lane | 2004-07-11 | 1 | -1/+15 |
| * | Fix seriously nasty memory leak in new TransactionIdIsInProgress code. | Tom Lane | 2004-07-01 | 1 | -4/+9 |
| * | Nested transactions. There is still much left to do, especially on the | Tom Lane | 2004-07-01 | 8 | -83/+357 |
| * | Looks like s_lock_test needs <time.h> on some platforms. | Tom Lane | 2004-06-19 | 1 | -1/+2 |
| * | s_lock_test requires libpgport to build now. | Tom Lane | 2004-06-19 | 1 | -4/+7 |
| * | Tablespaces. Alternate database locations are dead, long live tablespaces. | Tom Lane | 2004-06-18 | 5 | -80/+93 |
| * | StrategyDirtyBufferList wasn't being careful to honor max_buffers limit. | Tom Lane | 2004-06-11 | 1 | -3/+7 |
| * | Add some code to Assert that when we release pin on a buffer, we are | Tom Lane | 2004-06-11 | 2 | -2/+27 |
| * | Previous code cleanup was for bufpage.c, not bufmgr.c. | Bruce Momjian | 2004-06-09 | 1 | -13/+11 |
| * | Stylistic changes in bufmgr.c | Bruce Momjian | 2004-06-08 | 1 | -28/+29 |
| * | Tweak palloc/repalloc to allow zero bytes to be requested, as per recent | Tom Lane | 2004-06-05 | 3 | -10/+6 |
| * | Adjust our timezone library to use pg_time_t (typedef'd as int64) in | Tom Lane | 2004-06-03 | 1 | -1/+3 |
| * | Per previous discussions, here are two functions to send INT and TERM | Bruce Momjian | 2004-06-02 | 1 | -1/+35 |
| * | Adjust btree index build to not use shared buffers, thereby avoiding the | Tom Lane | 2004-06-02 | 2 | -3/+67 |
| * | Additional mop-up for sync-to-fsync changes: avoid issuing fsyncs for | Tom Lane | 2004-05-31 | 4 | -45/+81 |
| * | Minor code rationalization: FlushRelationBuffers just returns void, | Tom Lane | 2004-05-31 | 1 | -24/+7 |
| * | Per previous discussions, get rid of use of sync(2) in favor of | Tom Lane | 2004-05-31 | 4 | -82/+317 |
| * | Implement new PostmasterIsAlive() check for WIN32, per Claudio Natoli. | Tom Lane | 2004-05-30 | 1 | -5/+3 |
| * | Separate out bgwriter code into a logically separate module, rather | Tom Lane | 2004-05-29 | 4 | -100/+70 |
| * | Code review for EXEC_BACKEND changes. Reduce the number of #ifdefs by | Tom Lane | 2004-05-28 | 4 | -44/+41 |
| * | Handle impending sinval queue overflow by means of a separate signal | Tom Lane | 2004-05-23 | 2 | -8/+233 |
| * | Get rid of rd_nblocks field in relcache entries. Turns out this was | Tom Lane | 2004-05-08 | 1 | -52/+22 |
| * | Tiny assorted fixes: correct a typo in a comment in vacuumlazy.c, remove | Neil Conway | 2004-04-25 | 1 | -3/+1 |
| * | Make LocalRefCount and PrivateRefCount arrays of int32, rather than long. | Neil Conway | 2004-04-22 | 3 | -33/+43 |
| * | Another round of code cleanup on bufmgr. Use BM_VALID flag to keep track | Tom Lane | 2004-04-21 | 4 | -408/+310 |
| * | Code review for ARC patch. Eliminate static variables, improve handling | Tom Lane | 2004-04-19 | 6 | -688/+682 |
| * | * Most changes are to fix warnings issued when compiling win32 | Bruce Momjian | 2004-04-19 | 1 | -2/+2 |
| * | When changing select() calls for delays into pg_usleep(), two comments | Bruce Momjian | 2004-03-23 | 1 | -3/+3 |
| * | * postmaster.c: cleanup pmdaemonize under win32; missed failure message | Bruce Momjian | 2004-03-15 | 1 | -2/+2 |
| * | For application to HEAD, following community review. | Bruce Momjian | 2004-02-25 | 1 | -74/+57 |
| * | Replace opendir/closedir calls throughout the backend with AllocateDir | Tom Lane | 2004-02-23 | 1 | -17/+109 |
| * | Do a direct probe during postmaster startup to determine the maximum | Tom Lane | 2004-02-23 | 1 | -87/+144 |
| * | Here is a patch that implements setitimer() on win32. With this patch | Bruce Momjian | 2004-02-18 | 1 | -14/+1 |
| * | Avoid delaying postmaster shutdown by up to 10 seconds on platforms | Tom Lane | 2004-02-12 | 1 | -2/+18 |
| * | Fixed bug where FlushRelationBuffers() did call StrategyInvalidateBuffer() | Jan Wieck | 2004-02-12 | 3 | -117/+32 |
| * | Commit the reasonably uncontroversial parts of J.R. Nield's PITR patch, to | Tom Lane | 2004-02-11 | 2 | -2/+160 |
| * | Centralize implementation of delay code by creating a pg_usleep() | Tom Lane | 2004-02-10 | 2 | -6/+4 |
| * | Restructure smgr API as per recent proposal. smgr no longer depends on | Tom Lane | 2004-02-10 | 9 | -1424/+560 |
| * | Win32 signals cleanup. Patch by Magnus Hagander, with input from Claudio | Neil Conway | 2004-02-08 | 2 | -6/+4 |
| * | Cost based vacuum delay feature. | Jan Wieck | 2004-02-06 | 2 | -2/+17 |
| * | Backing out the background writer sync() option. | Jan Wieck | 2004-02-04 | 1 | -50/+1 |
| * | Remove sleep() and use single PG_SLEEP call for Win32 signal handling | Bruce Momjian | 2004-01-30 | 1 | -5/+2 |