summaryrefslogtreecommitdiff
path: root/src/backend/access/transam/xlog.c
AgeCommit message (Expand)Author
2010-01-15Introduce Streaming Replication.Heikki Linnakangas
2010-01-04Write an end-of-backup WAL record at pg_stop_backup(), and wait for it atHeikki Linnakangas
2010-01-02Update copyright for the year 2010.Bruce Momjian
2009-12-30Reset minRecoveryPoint at checkpoints, so that we don't uselessly updateHeikki Linnakangas
2009-12-19Allow read only connections during recovery, known as Hot Standby.Simon Riggs
2009-09-13Don't error out if recycling or removing an old WAL segment fails at the endHeikki Linnakangas
2009-09-10On Windows, when a file is deleted and another process still has an openHeikki Linnakangas
2009-09-01Remove flatfiles.c, which is now obsolete.Alvaro Herrera
2009-08-31Track the current XID wrap limit (or more accurately, the oldest unfrozenTom Lane
2009-08-27In the checkpoint written at the end of archive recovery, the WAL page headerHeikki Linnakangas
2009-08-12Allow backends to start up without use of the flat-file copy of pg_database.Tom Lane
2009-08-08Document that LocalSetXLogInsertAllowed can be re-executed.Tom Lane
2009-08-07rm_cleanup functions need to be allowed to write WAL entries. This oversightTom Lane
2009-06-26Cleanup and code review for the patch that made bgwriter active duringTom Lane
2009-06-25Fix some serious bugs in archive recovery, now that bgwriter is activeHeikki Linnakangas
2009-06-118.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian
2009-06-02Only recycle normal files in pg_xlog as WAL segments. pg_standby createsHeikki Linnakangas
2009-05-28When archiving is enabled, rotate the last WAL segment at shutdown so thatHeikki Linnakangas
2009-05-15Fix all the server-side SIGQUIT handlers (grumble ... why so many identicalTom Lane
2009-05-14Improve a couple of comments.Tom Lane
2009-05-14Add recovery_end_command option to recovery.conf. recovery_end_commandHeikki Linnakangas
2009-05-07Request XLOG switch before writing checkpoint in pg_start_backup(). OtherwiseHeikki Linnakangas
2009-04-22After archive recovery, mark the last WAL segment from the parent timelineHeikki Linnakangas
2009-04-07Add an optional parameter to pg_start_backup() that specifies whether to doTom Lane
2009-03-11Code review for dtrace probes added (so far) to 8.4. Adjust placement ofTom Lane
2009-03-04Reload config file in startup process on SIGHUP.Heikki Linnakangas
2009-02-23Change the signaling of end-of-recovery. Startup process now indicates endHeikki Linnakangas
2009-02-18Start background writer during archive recovery. Background writer now performsHeikki Linnakangas
2009-02-07Fix obsolete comment. Zdenek KotalaHeikki Linnakangas
2009-01-23Put back fast-path for the case that there's no backup blocks inHeikki Linnakangas
2009-01-20Add a new option to RestoreBkpBlocks() to indicate if a cleanup lock shouldHeikki Linnakangas
2009-01-11Re-enable the old code in xlog.c that tried to use posix_fadvise(), so thatTom Lane
2009-01-01Update copyright for 2009.Bruce Momjian
2008-12-24Change the name of dtrace wal tracepoints:Bruce Momjian
2008-12-17The attached patch contains a couple of fixes in the existing probes andBruce Momjian
2008-12-03If pg_stop_backup() is called just after switching to a new xlog file,Heikki Linnakangas
2008-11-09Add a startup check that pg_xlog and pg_xlog/archive_status exist.Tom Lane
2008-10-31Unite ReadBufferWithFork, ReadBufferWithStrategy, and ZeroOrReadBufferHeikki Linnakangas
2008-10-30Fix recoveryLastXTime logic so that it actually does what one would expect.Tom Lane
2008-09-23Make LC_COLLATE and LC_CTYPE database-level settings. Collation andHeikki Linnakangas
2008-09-08Fix a couple of problems pointed out by Fujii Masao in the 2008-Apr-05 patchTom Lane
2008-08-11Introduce the concept of relation forks. An smgr relation can now consistHeikki Linnakangas
2008-07-13Clean up the use of some page-header-access macros: principally, useTom Lane
2008-06-30Fix recovery.conf boolean variables to take the same range of stringBruce Momjian
2008-06-12Refactor XLogOpenRelation() and XLogReadBuffer() in preparation for relationHeikki Linnakangas
2008-06-08Move BufferGetPageSize and BufferGetPage from bufpage.h to bufmgr.h. It isAlvaro Herrera
2008-05-28Set hidden field for guc enum missed in previous commit.Magnus Hagander
2008-05-17Fix a subtle bug exposed by recent wal_sync_method rearrangements.Tom Lane
2008-05-16Reduce unnecessary PANIC to ERROR, improve a couple of comments.Tom Lane
2008-05-14Remove the special variable for open_sync_bit used in O_SYNC and O_DSYNCMagnus Hagander