OSDN Git Service

rebuid:
[eos/hostdependX86MAC64.git] / util / X86MAC64 / include / postgresql / server / replication / basebackup.h
1 /*-------------------------------------------------------------------------
2  *
3  * basebackup.h
4  *        Exports from replication/basebackup.c.
5  *
6  * Portions Copyright (c) 2010-2014, PostgreSQL Global Development Group
7  *
8  * src/include/replication/basebackup.h
9  *
10  *-------------------------------------------------------------------------
11  */
12 #ifndef _BASEBACKUP_H
13 #define _BASEBACKUP_H
14
15 #include "nodes/replnodes.h"
16
17 /*
18  * Minimum and maximum values of MAX_RATE option in BASE_BACKUP command.
19  */
20 #define MAX_RATE_LOWER  32
21 #define MAX_RATE_UPPER  1048576
22
23
24 extern void SendBaseBackup(BaseBackupCmd *cmd);
25
26 #endif   /* _BASEBACKUP_H */