From 048d148fe63102fafb2336ab5439c950dea7f692 Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Sun, 23 Jan 2011 12:21:23 +0100 Subject: Add pg_basebackup tool for streaming base backups This tool makes it possible to do the pg_start_backup/ copy files/pg_stop_backup step in a single command. There are still some steps to be done before this is a complete backup solution, such as the ability to stream the required WAL logs, but it's still usable, and could do with some buildfarm coverage. In passing, make the checkpoint request optionally fast instead of hardcoding it. Magnus Hagander, reviewed by Fujii Masao and Dimitri Fontaine --- src/include/replication/replnodes.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/include/replication/replnodes.h') diff --git a/src/include/replication/replnodes.h b/src/include/replication/replnodes.h index 4f4a1a3bac3..fc814146baf 100644 --- a/src/include/replication/replnodes.h +++ b/src/include/replication/replnodes.h @@ -47,6 +47,7 @@ typedef struct BaseBackupCmd NodeTag type; char *label; bool progress; + bool fastcheckpoint; } BaseBackupCmd; -- cgit v1.2.3