1 /*-------------------------------------------------------------------------
2  *
3  * pageinspect.h
4  *	  Common functions for pageinspect.
5  *
6  * Copyright (c) 2017-2018, PostgreSQL Global Development Group
7  *
8  * IDENTIFICATION
9  *	  contrib/pageinspect/pageinspect.h
10  *
11  *-------------------------------------------------------------------------
12  */
13 #ifndef _PAGEINSPECT_H_
14 #define _PAGEINSPECT_H_
15 
16 #include "storage/bufpage.h"
17 
18 /* in rawpage.c */
19 extern Page get_page_from_raw(bytea *raw_page);
20 
21 #endif							/* _PAGEINSPECT_H_ */
22