2011-01-10 08:03:55 -05:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
|
|
|
|
* basebackup.h
|
|
|
|
|
* Exports from replication/basebackup.c.
|
|
|
|
|
*
|
2011-03-10 01:05:33 -05:00
|
|
|
* Portions Copyright (c) 2010-2011, PostgreSQL Global Development Group
|
2011-01-10 08:03:55 -05:00
|
|
|
*
|
|
|
|
|
* src/include/replication/walsender.h
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
#ifndef _BASEBACKUP_H
|
|
|
|
|
#define _BASEBACKUP_H
|
|
|
|
|
|
2011-01-23 17:39:18 -05:00
|
|
|
#include "replication/replnodes.h"
|
|
|
|
|
|
|
|
|
|
extern void SendBaseBackup(BaseBackupCmd *cmd);
|
2011-01-10 08:03:55 -05:00
|
|
|
|
|
|
|
|
#endif /* _BASEBACKUP_H */
|