aboutsummaryrefslogtreecommitdiff
path: root/src/include/access/xlog_internal.h
diff options
context:
space:
mode:
authorSimon Riggs <simon@2ndQuadrant.com>2011-02-08 18:30:22 +0000
committerSimon Riggs <simon@2ndQuadrant.com>2011-02-08 18:30:22 +0000
commit8c6e3adbf792c2bba448e88cbf2c8e03fb802e73 (patch)
tree26d63289973a05edadd248a7c9c642f18507231e /src/include/access/xlog_internal.h
parentf9f9d696a9c51cb26c24bb28760e6bb1edd0e995 (diff)
downloadpostgresql-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.h3
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 */