mirror of
https://github.com/simtactics/niotso.git
synced 2025-03-24 11:49:07 +00:00
19 lines
494 B
C
19 lines
494 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* basebackup.h
|
|
* Exports from replication/basebackup.c.
|
|
*
|
|
* Portions Copyright (c) 2010-2011, 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 */
|