summaryrefslogtreecommitdiff
path: root/src/backend/access/transam/xlog.c
Commit message (Expand)AuthorAgeFilesLines
* Make the server track an 'XID epoch', that is, maintain higher-order bitsTom Lane2006-08-211-10/+84
* Implement archive_timeout feature to force xlog file switches to occur no moreTom Lane2006-08-171-14/+107
* Make recovery from WAL be restartable, by executing a checkpoint-likeTom Lane2006-08-071-56/+149
* Add support for forcing a switch to a new xlog file; cause such a switchTom Lane2006-08-061-48/+393
* Modify snapshot definition so that lazy vacuums are ignored by otherAlvaro Herrera2006-07-301-2/+2
* Remove 576 references of include files that were not needed.Bruce Momjian2006-07-141-6/+1
* Allow include files to compile own their own.Bruce Momjian2006-07-131-1/+2
* Put #ifdef NOT_USED around posix_fadvise call. We may want to resurrectTom Lane2006-06-271-2/+14
* pg_stop_backup was calling XLogArchiveNotify() twice for the newly createdTom Lane2006-06-221-33/+28
* Don't try to call posix_fadvise() unless <fcntl.h> supplies a declarationTom Lane2006-06-181-5/+7
* Test for POSIX_FADV_DONTNEED to use posix_fadvise().Bruce Momjian2006-06-161-2/+2
* Use posix_fadvise() to avoid kernel caching of WAL contents on WAL fileBruce Momjian2006-06-151-25/+33
* Ensure that we validate the page header of the first page of a WAL fileTom Lane2006-04-201-2/+29
* Fix the torn-page hazard for PITR base backups by forcing full page writesTom Lane2006-04-171-78/+156
* Make the world safe for full_page_writes. Allow XLOG records that try toTom Lane2006-04-141-2/+9
* Add a field to the first page of each WAL file to indicate theTom Lane2006-04-051-1/+10
* Don't use BLCKSZ for the physical length of the pg_control file, butTom Lane2006-04-041-12/+11
* Define a separately configurable XLOG_BLCKSZ symbol for the page sizeTom Lane2006-04-031-46/+55
* Clean up WAL/buffer interactions as per my recent proposal. Get rid of theTom Lane2006-03-311-3/+3
* Clean up and document the API for XLogOpenRelation and XLogReadBuffer.Tom Lane2006-03-291-38/+26
* Disable full_page_writes, because turning it off risks causing crash-recoveryTom Lane2006-03-281-3/+2
* Arrange to emit a description of the current XLOG record as error contextTom Lane2006-03-241-24/+62
* Update copyright for 2006. Update scripts.Bruce Momjian2006-03-051-2/+2
* Cosmetic code cleanup: fix a bunch of places that used "return (expr);"Neil Conway2006-01-111-5/+5
* Get rid of the SpinLockAcquire/SpinLockAcquire_NoHoldoff distinctionTom Lane2005-12-291-15/+15
* Arrange to set the LC_XXX environment variables to match our localeTom Lane2005-12-281-3/+4
* Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian2005-11-221-57/+57
* Message correctionsPeter Eisentraut2005-10-291-3/+3
* Make code for selecting default WAL sync method less confusing.Tom Lane2005-10-221-6/+6
* Standard pgindent run for 8.1.Bruce Momjian2005-10-151-578/+551
* Expand pg_control information so that we can verify that the databaseTom Lane2005-10-031-1/+17
* Rewrite gather-write patch into something less obviously bolted onTom Lane2005-08-221-123/+142
* Fix some inconsistent choices of datatypes in xlog.c. Make bufferTom Lane2005-08-221-32/+34
* Convert the arithmetic for shared memory size calculation from 'int'Tom Lane2005-08-201-54/+42
* Autovacuum loose end mop-up. Provide autovacuum-specific vacuum costTom Lane2005-08-111-2/+8
* Fix compile for no O_SYNC, but introduced with O_DIRECT.Bruce Momjian2005-07-301-8/+9
* Clean up a number of autovacuum loose ends. Make the stats collectorTom Lane2005-07-291-1/+31
* Update O_DIRECT comment.Bruce Momjian2005-07-291-1/+3
* Use O_DIRECT if available when using O_SYNC for wal_sync_method.Bruce Momjian2005-07-291-48/+149
* Remove unintended code addition.Bruce Momjian2005-07-231-10/+1
* Macro alignment cleanup.Bruce Momjian2005-07-231-17/+26
* Even though I'd like to see full_page_writes go away before 8.1,Tom Lane2005-07-081-5/+4
* Add GUC full_page_writes to control writing full pages to WAL.Bruce Momjian2005-07-051-2/+5
* Arrange for the postmaster (and standalone backends, initdb, etc) toTom Lane2005-07-041-84/+66
* Improve the checkpoint signaling mechanism so that the bgwriter can tellTom Lane2005-06-301-3/+3
* Clean up the rather historically encumbered interface to now() andTom Lane2005-06-291-1/+2
* Simplify uses of readdir() by creating a function ReadDir() thatTom Lane2005-06-191-33/+3
* Arrange to fsync two-phase-commit state files only during checkpoints;Tom Lane2005-06-191-1/+3
* Two-phase commit. Original patch by Heikki Linnakangas, with additionalTom Lane2005-06-171-81/+11
* Remove old *.backup files when we do pg_stop_backup(). ThisBruce Momjian2005-06-151-1/+59