pgsql: Named restore points in recovery. Users can record named points,

From: Simon Riggs <simon(at)2ndQuadrant(dot)com>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Named restore points in recovery. Users can record named points,
Date: 2011-02-08 19:39:55
Message-ID: E1PmtPn-00076o-V7@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Named restore points in recovery. Users can record named points, then
new recovery.conf parameter recovery_target_name allows PITR to
specify named points as recovery targets.

Jaime Casanova, reviewed by Euler Taveira de Oliveira, plus minor edits

Branch
------
master

Details
-------
http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=c016ce728139be95bb0dc7c4e5640507334c2339

Modified Files
--------------
doc/src/sgml/backup.sgml | 7 +-
doc/src/sgml/func.sgml | 10 ++
doc/src/sgml/recovery-config.sgml | 25 +++-
src/backend/access/transam/recovery.conf.sample | 7 +-
src/backend/access/transam/xlog.c | 170 +++++++++++++++++++++--
src/include/access/xlog.h | 4 +-
src/include/access/xlog_internal.h | 1 +
src/include/catalog/pg_control.h | 1 +
src/include/catalog/pg_proc.h | 1 +
9 files changed, 209 insertions(+), 17 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Simon Riggs 2011-02-08 19:46:54 pgsql: Continue long tradition of bumping the catalog version a little
Previous Message Simon Riggs 2011-02-08 18:30:55 pgsql: Basic Recovery Control functions for use in Hot Standby. Pause,