mirror of
https://github.com/EnterpriseDB/repmgr.git
synced 2026-03-24 23:56:29 +00:00
"standby follow" was originally co-opted to start up a demoted node; this functionality is now delegated to "node rejoin", with the core functionality of "standby follow" implemented as an internal function.
20 lines
514 B
C
20 lines
514 B
C
/*
|
|
* repmgr-action-standby.h
|
|
* Copyright (c) 2ndQuadrant, 2010-2017
|
|
*/
|
|
|
|
#ifndef _REPMGR_ACTION_STANDBY_H_
|
|
#define _REPMGR_ACTION_STANDBY_H_
|
|
|
|
extern void do_standby_clone(void);
|
|
extern void do_standby_register(void);
|
|
extern void do_standby_unregister(void);
|
|
extern void do_standby_promote(void);
|
|
extern void do_standby_follow(void);
|
|
extern void do_standby_follow_internal(PGconn *primary_conn, t_node_info *primary_node_record);
|
|
extern void do_standby_switchover(void);
|
|
|
|
|
|
|
|
#endif /* _REPMGR_ACTION_STANDBY_H_ */
|