diff options
author | Simon Riggs <simon@2ndQuadrant.com> | 2011-02-08 18:30:22 +0000 |
---|---|---|
committer | Simon Riggs <simon@2ndQuadrant.com> | 2011-02-08 18:30:22 +0000 |
commit | 8c6e3adbf792c2bba448e88cbf2c8e03fb802e73 (patch) | |
tree | 26d63289973a05edadd248a7c9c642f18507231e /src/include/access/xlog_internal.h | |
parent | f9f9d696a9c51cb26c24bb28760e6bb1edd0e995 (diff) | |
download | postgresql-8c6e3adbf792c2bba448e88cbf2c8e03fb802e73.tar.gz postgresql-8c6e3adbf792c2bba448e88cbf2c8e03fb802e73.zip |
Basic Recovery Control functions for use in Hot Standby. Pause, Resume,
Status check functions only. Also, new recovery.conf parameter to
pause_at_recovery_target, default on.
Simon Riggs, reviewed by Fujii Masao
Diffstat (limited to 'src/include/access/xlog_internal.h')
-rw-r--r-- | src/include/access/xlog_internal.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/access/xlog_internal.h b/src/include/access/xlog_internal.h index ba640359cce..6390113de37 100644 --- a/src/include/access/xlog_internal.h +++ b/src/include/access/xlog_internal.h @@ -275,5 +275,8 @@ extern Datum pg_last_xact_replay_timestamp(PG_FUNCTION_ARGS); extern Datum pg_xlogfile_name_offset(PG_FUNCTION_ARGS); extern Datum pg_xlogfile_name(PG_FUNCTION_ARGS); extern Datum pg_is_in_recovery(PG_FUNCTION_ARGS); +extern Datum pg_xlog_replay_pause(PG_FUNCTION_ARGS); +extern Datum pg_xlog_replay_resume(PG_FUNCTION_ARGS); +extern Datum pg_is_xlog_replay_paused(PG_FUNCTION_ARGS); #endif /* XLOG_INTERNAL_H */ |