summaryrefslogtreecommitdiffstats
path: root/src/include/common/archive.h
blob: b269910f03c721cf208e66e1f5aa409a5648ca73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*-------------------------------------------------------------------------
 *
 * archive.h
 *	  Common WAL archive routines
 *
 * Portions Copyright (c) 1996-2020, PostgreSQL Global Development Group
 * Portions Copyright (c) 1994, Regents of the University of California
 *
 * src/include/common/archive.h
 *
 *-------------------------------------------------------------------------
 */
#ifndef ARCHIVE_H
#define ARCHIVE_H

extern char *BuildRestoreCommand(const char *restoreCommand,
								 const char *xlogpath,	/* %p */
								 const char *xlogfname, /* %f */
								 const char *lastRestartPointFname);	/* %r */

#endif							/* ARCHIVE_H */