diff options
author | Simon Riggs <simon@2ndQuadrant.com> | 2016-01-12 07:54:52 +0000 |
---|---|---|
committer | Simon Riggs <simon@2ndQuadrant.com> | 2016-01-12 07:54:52 +0000 |
commit | e63bb4549a2f47b86de9fc21c9f8b00440f34f99 (patch) | |
tree | 79c4138b111ad43caf0a4c7a77d1261b63e49b05 /src/include/access | |
parent | 1e29e6324ca7d52eb751c8d63881d1f7c44e3921 (diff) | |
download | postgresql-e63bb4549a2f47b86de9fc21c9f8b00440f34f99.tar.gz postgresql-e63bb4549a2f47b86de9fc21c9f8b00440f34f99.zip |
Add new user fn pg_current_xlog_flush_location()
Tomas Vondra, reviewed by Michael Paquier and Amit Kapila
Minor edits by me
Diffstat (limited to 'src/include/access')
-rw-r--r-- | src/include/access/xlog_fn.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/access/xlog_fn.h b/src/include/access/xlog_fn.h index 73046b0a4fa..762df8bea30 100644 --- a/src/include/access/xlog_fn.h +++ b/src/include/access/xlog_fn.h @@ -19,6 +19,7 @@ extern Datum pg_switch_xlog(PG_FUNCTION_ARGS); extern Datum pg_create_restore_point(PG_FUNCTION_ARGS); extern Datum pg_current_xlog_location(PG_FUNCTION_ARGS); extern Datum pg_current_xlog_insert_location(PG_FUNCTION_ARGS); +extern Datum pg_current_xlog_flush_location(PG_FUNCTION_ARGS); extern Datum pg_last_xlog_receive_location(PG_FUNCTION_ARGS); extern Datum pg_last_xlog_replay_location(PG_FUNCTION_ARGS); extern Datum pg_last_xact_replay_timestamp(PG_FUNCTION_ARGS); |