diff options
| author | Robert Haas | 2020-10-22 12:44:18 +0000 |
|---|---|---|
| committer | Robert Haas | 2020-10-22 12:44:18 +0000 |
| commit | 866e24d47db1743dfcff5bd595b57e3a143f2cb1 (patch) | |
| tree | 8a0ed0502ebba60526dcb77f13522c6cae4684e9 /src/include | |
| parent | f8721bd752790859df747905bc44fb5ad8dbf07d (diff) | |
Extend amcheck to check heap pages.
Mark Dilger, reviewed by Peter Geoghegan, Andres Freund, Álvaro Herrera,
Michael Paquier, Amul Sul, and by me. Some last-minute cosmetic
revisions by me.
Discussion: http://postgr.es/m/12ED3DA8-25F0-4B68-937D-D907CFBF08E7@enterprisedb.com
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/access/multixact.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/access/multixact.h b/src/include/access/multixact.h index 58c42ffe1fe..9a303809019 100644 --- a/src/include/access/multixact.h +++ b/src/include/access/multixact.h @@ -109,6 +109,7 @@ extern MultiXactId MultiXactIdCreateFromMembers(int nmembers, MultiXactMember *members); extern MultiXactId ReadNextMultiXactId(void); +extern void ReadMultiXactIdRange(MultiXactId *oldest, MultiXactId *next); extern bool MultiXactIdIsRunning(MultiXactId multi, bool isLockOnly); extern void MultiXactIdSetOldestMember(void); extern int GetMultiXactIdMembers(MultiXactId multi, MultiXactMember **xids, |
