doc PG 17 relnotes: Fixes from jian he
[pgsql.git] / contrib / pageinspect / pageinspect.h
blob209163a8c815294cc4287f4c038e010a0d210d4f
1 /*-------------------------------------------------------------------------
3 * pageinspect.h
4 * Common functions for pageinspect.
6 * Copyright (c) 2017-2024, PostgreSQL Global Development Group
8 * IDENTIFICATION
9 * contrib/pageinspect/pageinspect.h
11 *-------------------------------------------------------------------------
13 #ifndef _PAGEINSPECT_H_
14 #define _PAGEINSPECT_H_
16 #include "storage/bufpage.h"
19 * Extension version number, for supporting older extension versions' objects
21 enum pageinspect_version
23 PAGEINSPECT_V1_8,
24 PAGEINSPECT_V1_9,
27 /* in rawpage.c */
28 extern Page get_page_from_raw(bytea *raw_page);
30 #endif /* _PAGEINSPECT_H_ */