mirror of
https://github.com/postgres/postgres.git
synced 2025-09-03 15:22:11 +03:00
20 lines
494 B
C
20 lines
494 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* basebackup.h
|
|
* Exports from replication/basebackup.c.
|
|
*
|
|
* Portions Copyright (c) 2010-2012, PostgreSQL Global Development Group
|
|
*
|
|
* src/include/replication/basebackup.h
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef _BASEBACKUP_H
|
|
#define _BASEBACKUP_H
|
|
|
|
#include "nodes/replnodes.h"
|
|
|
|
extern void SendBaseBackup(BaseBackupCmd *cmd);
|
|
|
|
#endif /* _BASEBACKUP_H */
|