pgsql: Split off functions related to timeline history files and XLOG a

From: Heikki Linnakangas <heikki(dot)linnakangas(at)iki(dot)fi>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Split off functions related to timeline history files and XLOG a
Date: 2012-10-02 10:39:29
Message-ID: E1TIzsv-0008Hn-G6@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Split off functions related to timeline history files and XLOG archiving.

This is just refactoring, to make the functions accessible outside xlog.c.
A followup patch will make use of that, to allow fetching timeline history
files over streaming replication.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/d5497b95f3ca2fc50c6eef46d3394ab6e6855956

Modified Files
--------------
src/backend/access/transam/Makefile | 3 +-
src/backend/access/transam/timeline.c | 378 ++++++++++++
src/backend/access/transam/xlog.c | 988 ++----------------------------
src/backend/access/transam/xlogarchive.c | 572 +++++++++++++++++
src/include/access/timeline.h | 23 +
src/include/access/xlog_internal.h | 23 +
6 files changed, 1058 insertions(+), 929 deletions(-)

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message Simon Riggs 2012-10-02 10:53:34 Re: pgsql: Split off functions related to timeline history files and XLOG a
Previous Message Heikki Linnakangas 2012-10-02 08:04:41 pgsql: Fix access past end of string in date parsing.